Changeset 37215 in webkit for trunk/JavaScriptCore/kjs/JSGlobalObject.cpp
- Timestamp:
- Oct 2, 2008, 4:48:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.cpp
r37213 r37215 360 360 RegisterFile& registerFile = globalData()->machine->registerFile(); 361 361 if (registerFile.globalObject() == this) 362 registerFile.markGlobals( globalData()->heap);362 registerFile.markGlobals(&globalData()->heap); 363 363 364 364 markIfNeeded(d()->globalExec->exception()); … … 449 449 { 450 450 #ifdef JAVASCRIPTCORE_BUILDING_ALL_IN_ONE_FILE 451 return globalData->heap ->inlineAllocate(size);451 return globalData->heap.inlineAllocate(size); 452 452 #else 453 return globalData->heap ->allocate(size);453 return globalData->heap.allocate(size); 454 454 #endif 455 455 }
Note:
See TracChangeset
for help on using the changeset viewer.