Changeset 94802 in webkit for trunk/Source/JavaScriptCore/dfg
- Timestamp:
- Sep 8, 2011, 2:38:04 PM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore/dfg
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r94629 r94802 30 30 31 31 #include "DFGAliasTracker.h" 32 #include "DFGCapabilities.h" 32 33 #include "DFGScoreBoard.h" 33 34 #include "CodeBlock.h" … … 599 600 // Switch on the current bytecode opcode. 600 601 Instruction* currentInstruction = instructionsBegin + m_currentIndex; 601 switch (interpreter->getOpcodeID(currentInstruction->u.opcode)) { 602 OpcodeID opcodeID = interpreter->getOpcodeID(currentInstruction->u.opcode); 603 switch (opcodeID) { 602 604 603 605 // === Function entry opcodes === … … 1209 1211 default: 1210 1212 // Parse failed! 1213 ASSERT(!canCompileOpcode(opcodeID)); 1211 1214 return false; 1212 1215 } 1216 1217 ASSERT(canCompileOpcode(opcodeID)); 1213 1218 } 1214 1219 }
Note:
See TracChangeset
for help on using the changeset viewer.