Changeset 36418 in webkit for trunk/JavaScriptCore/VM/CodeBlock.cpp
- Timestamp:
- Sep 14, 2008, 7:18:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.cpp
r36417 r36418 278 278 size_t i = 0; 279 279 do { 280 printStructureIDs(&instructions[structureIDInstructions[i] ]);280 printStructureIDs(&instructions[structureIDInstructions[i].opcodeIndex]); 281 281 ++i; 282 282 } while (i < structureIDInstructions.size()); … … 876 876 { 877 877 size_t size = structureIDInstructions.size(); 878 for (size_t i = 0; i < size; ++i) 879 derefStructureIDs(&instructions[structureIDInstructions[i]]); 880 881 size = structureIDAccessStubs.size(); 882 for (size_t i = 0; i < size; ++i) 883 fastFree(structureIDAccessStubs[i]); 884 878 for (size_t i = 0; i < size; ++i) { 879 derefStructureIDs(&instructions[structureIDInstructions[i].opcodeIndex]); 880 if (structureIDInstructions[i].stubRoutine) 881 fastFree(structureIDInstructions[i].stubRoutine); 882 } 885 883 #if ENABLE(CTI) 886 884 if (ctiCode)
Note:
See TracChangeset
for help on using the changeset viewer.