Changeset 129713 in webkit for trunk/Source/JavaScriptCore/bytecompiler
- Timestamp:
- Sep 26, 2012, 5:04:48 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp
r129440 r129713 1130 1130 emitOpcode(op_jneq_ptr); 1131 1131 instructions().append(cond->index()); 1132 instructions().append( Instruction(*m_globalData, m_codeBlock->ownerExecutable(), m_scope->globalObject()->callFunction()));1132 instructions().append(Special::CallFunction); 1133 1133 instructions().append(target->bind(begin, instructions().size())); 1134 1134 return target; … … 1141 1141 emitOpcode(op_jneq_ptr); 1142 1142 instructions().append(cond->index()); 1143 instructions().append( Instruction(*m_globalData, m_codeBlock->ownerExecutable(), m_scope->globalObject()->applyFunction()));1143 instructions().append(Special::ApplyFunction); 1144 1144 instructions().append(target->bind(begin, instructions().size())); 1145 1145 return target;
Note:
See TracChangeset
for help on using the changeset viewer.