Changeset 40993 in webkit for trunk/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Feb 13, 2009, 3:28:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/CodeBlock.h
r40846 r40993 315 315 return binaryChop<CallReturnOffsetToBytecodeIndex, unsigned, getCallReturnOffset>(m_exceptionInfo->m_callReturnIndexVector.begin(), m_exceptionInfo->m_callReturnIndexVector.size(), m_jitCode.code.offsetOf(nativePC))->bytecodeIndex; 316 316 } 317 318 void setIsNumericCompareFunction(bool isNumericCompareFunction) { m_isNumericCompareFunction = isNumericCompareFunction; } 319 bool isNumericCompareFunction() { return m_isNumericCompareFunction; } 317 320 318 321 bool functionRegisterForBytecodeOffset(unsigned bytecodeOffset, int& functionRegisterIndex); … … 480 483 bool m_usesEval; 481 484 bool m_usesArguments; 485 bool m_isNumericCompareFunction; 482 486 483 487 CodeType m_codeType;
Note:
See TracChangeset
for help on using the changeset viewer.