Changeset 44796 in webkit for trunk/JavaScriptCore/jit/JITOpcodes.cpp
- Timestamp:
- Jun 17, 2009, 10:50:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITOpcodes.cpp
r44748 r44796 623 623 stubCall.call(); 624 624 ASSERT(regT0 == returnValueRegister); 625 // Temporarily bring these back on x86 platforms while we fix a bug.626 625 #if PLATFORM(X86_64) 627 626 addPtr(Imm32(0x48), X86::esp); … … 633 632 pop(X86::ebp); 634 633 ret(); 635 #el if PLATFORM(X86)634 #else 636 635 addPtr(Imm32(0x1c), X86::esp); 637 636 pop(X86::ebx); … … 640 639 pop(X86::ebp); 641 640 ret(); 642 #elif !defined(NDEBUG)643 // cti_op_throw SHOULD always change it's return address,644 // this point in the code should never be reached.645 breakpoint();646 641 #endif 647 642 }
Note:
See TracChangeset
for help on using the changeset viewer.