project64/Source/Project64-core/N64System/Recompiler/Aarch64/Aarch64RegInfo.cpp

39 lines
834 B
C++
Raw Normal View History

2022-09-26 03:23:14 +00:00
#include "stdafx.h"
#if defined(__aarch64__)
#include <Project64-core/N64System/Recompiler/Aarch64/Aarch64RegInfo.h>
2022-09-26 03:23:14 +00:00
CAarch64RegInfo::CAarch64RegInfo(CCodeBlock & /*CodeBlock*/, CAarch64Ops & /*Assembler*/)
{
}
2022-10-10 00:22:17 +00:00
CAarch64RegInfo::CAarch64RegInfo(const CAarch64RegInfo &)
{
2022-09-26 03:23:14 +00:00
g_Notify->BreakPoint(__FILE__, __LINE__);
}
CAarch64RegInfo::~CAarch64RegInfo()
{
}
2022-09-26 03:23:14 +00:00
2022-10-10 00:22:17 +00:00
CAarch64RegInfo & CAarch64RegInfo::operator=(const CAarch64RegInfo & right)
2022-09-26 03:23:14 +00:00
{
CRegBase::operator=(right);
g_Notify->BreakPoint(__FILE__, __LINE__);
return *this;
}
bool CAarch64RegInfo::operator==(const CAarch64RegInfo & /*right*/) const
{
g_Notify->BreakPoint(__FILE__, __LINE__);
return false;
}
bool CAarch64RegInfo::operator!=(const CAarch64RegInfo & /*right*/) const
{
g_Notify->BreakPoint(__FILE__, __LINE__);
return false;
}
#endif