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:
Lioncash 2018-05-30 05:06:39 -04:00
parent f5f4c10fd1
commit 986d644a01
1 changed files with 1 additions and 2 deletions

View File

@ -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_dequantizeTableS[128];
class CommonAsmRoutinesBase
struct CommonAsmRoutinesBase
{
public:
const u8* enter_code;
const u8* dispatcher_mispredicted_blr;