Changeset 34411 in webkit for trunk/JavaScriptCore/VM/Machine.cpp
- Timestamp:
- Jun 6, 2008, 9:51:02 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Machine.cpp
r34374 r34411 900 900 } while (0) 901 901 902 #if DUMP_OPCODE_STATS 903 OpcodeStats::resetLastInstruction(); 904 #endif 905 902 906 #if HAVE(COMPUTED_GOTO) 903 907 #define NEXT_OPCODE goto *vPC->u.opcode … … 1870 1874 instruction. 1871 1875 */ 1876 #if DUMP_OPCODE_STATS 1877 OpcodeStats::resetLastInstruction(); 1878 #endif 1872 1879 int target = (++vPC)->u.operand; 1873 1880 … … 2067 2074 vPC = codeBlock->instructions.begin(); 2068 2075 2076 #if DUMP_OPCODE_STATS 2077 OpcodeStats::resetLastInstruction(); 2078 #endif 2079 2069 2080 NEXT_OPCODE; 2070 2081 }
Note:
See TracChangeset
for help on using the changeset viewer.