Changeset 104338 in webkit for trunk/Source/JavaScriptCore/interpreter/Interpreter.h
- Timestamp:
- Jan 6, 2012, 2:15:31 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/Interpreter.h
r103292 r104338 115 115 #if ENABLE(COMPUTED_GOTO_INTERPRETER) 116 116 ASSERT(isOpcode(opcode)); 117 if (!m_enabled) { 118 OpcodeID result = static_cast<OpcodeID>(bitwise_cast<uintptr_t>(opcode)); 119 ASSERT(result == m_opcodeIDTable.get(opcode)); 120 return result; 121 } 117 if (!m_enabled) 118 return static_cast<OpcodeID>(bitwise_cast<uintptr_t>(opcode)); 119 122 120 return m_opcodeIDTable.get(opcode); 123 121 #else
Note:
See TracChangeset
for help on using the changeset viewer.