Merge pull request #4591 from lioncash/vnames

DSPJitRegCache: Make class variables conform to the coding style
This commit is contained in:
Anthony 2017-01-02 09:20:18 -08:00 committed by GitHub
commit cbb0f78dd1
2 changed files with 290 additions and 285 deletions

File diff suppressed because it is too large Load diff

View file

@ -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