mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
JitAsmCommon: Make CommonAsmRoutinesBase a struct
This is just used as a means of carting around routines. It's not meant to directly have functionality embedded within it--this is the job of the inheriting data structure--so we can just make this a basic struct. Particularly given all the data members were public to begin with.
This commit is contained in:
@ -12,9 +12,8 @@ alignas(16) extern const float m_one[4];
|
|||||||
alignas(16) extern const float m_quantizeTableS[128];
|
alignas(16) extern const float m_quantizeTableS[128];
|
||||||
alignas(16) extern const float m_dequantizeTableS[128];
|
alignas(16) extern const float m_dequantizeTableS[128];
|
||||||
|
|
||||||
class CommonAsmRoutinesBase
|
struct CommonAsmRoutinesBase
|
||||||
{
|
{
|
||||||
public:
|
|
||||||
const u8* enter_code;
|
const u8* enter_code;
|
||||||
|
|
||||||
const u8* dispatcher_mispredicted_blr;
|
const u8* dispatcher_mispredicted_blr;
|
||||||
|
Reference in New Issue
Block a user