Changeset 47530 in webkit for trunk/JavaScriptCore/wrec/WRECGenerator.cpp
- Timestamp:
- Aug 19, 2009, 5:02:24 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wrec/WRECGenerator.cpp
r40799 r47530 43 43 #if PLATFORM(X86) 44 44 // On x86 edi & esi are callee preserved registers. 45 push(X86 ::edi);46 push(X86 ::esi);45 push(X86Registers::edi); 46 push(X86Registers::esi); 47 47 48 48 #if COMPILER(MSVC) … … 73 73 // Restore callee save registers. 74 74 #if PLATFORM(X86) 75 pop(X86 ::esi);76 pop(X86 ::edi);75 pop(X86Registers::esi); 76 pop(X86Registers::edi); 77 77 #endif 78 78 ret(); … … 112 112 113 113 #if PLATFORM(X86) 114 pop(X86 ::esi);115 pop(X86 ::edi);114 pop(X86Registers::esi); 115 pop(X86Registers::edi); 116 116 #endif 117 117 ret();
Note:
See TracChangeset
for help on using the changeset viewer.