Merge pull request #4591 from lioncash/vnames
DSPJitRegCache: Make class variables conform to the coding style
This commit is contained in:
commit
cbb0f78dd1
File diff suppressed because it is too large
Load Diff
|
@ -39,7 +39,7 @@ enum DSPJitSignExtend
|
|||
class DSPJitRegCache
|
||||
{
|
||||
public:
|
||||
DSPJitRegCache(DSPEmitter& _emitter);
|
||||
DSPJitRegCache(DSPEmitter& emitter);
|
||||
|
||||
// For branching into multiple control flows
|
||||
DSPJitRegCache(const DSPJitRegCache& cache);
|
||||
|
@ -176,14 +176,14 @@ private:
|
|||
|
||||
static const std::array<Gen::X64Reg, 15> m_allocation_order;
|
||||
|
||||
std::array<DynamicReg, 37> regs;
|
||||
std::array<X64CachedReg, 16> xregs;
|
||||
std::array<DynamicReg, 37> m_regs;
|
||||
std::array<X64CachedReg, 16> m_xregs;
|
||||
|
||||
DSPEmitter& emitter;
|
||||
bool temporary;
|
||||
bool merged;
|
||||
DSPEmitter& m_emitter;
|
||||
bool m_is_temporary;
|
||||
bool m_is_merged;
|
||||
|
||||
int use_ctr;
|
||||
int m_use_ctr;
|
||||
};
|
||||
|
||||
} // namespace x86
|
||||
|
|
Loading…
Reference in New Issue