Changeset 172961 in webkit for trunk/Source/JavaScriptCore/jit/GPRInfo.h
- Timestamp:
- Aug 26, 2014, 9:46:10 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/GPRInfo.h
r172940 r172961 61 61 GPRReg payloadGPR() const { return m_gpr; } 62 62 63 bool uses(GPRReg gpr) const { return m_gpr == gpr; }64 65 63 private: 66 64 GPRReg m_gpr; … … 172 170 } 173 171 174 bool uses(GPRReg gpr) const { return m_tagGPR == gpr || m_payloadGPR == gpr; }175 176 172 private: 177 173 int8_t m_tagGPR;
Note:
See TracChangeset
for help on using the changeset viewer.