- Timestamp:
- May 3, 2007 3:10:17 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20880
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/target-i386/helper.c
r2426 r2465 1198 1198 { 1199 1199 #if defined(__DARWIN__) && defined(VBOX_STRICT) 1200 # if 01201 //uintptr_t uFrameAddr = (uintptr_t)__builtin_frame_address(0); - this is broken (uses %ebp)1202 //AssertMsg(!( (uFrameAddr - sizeof(uintptr_t)) & 7 ), ("uFrameAddr=%#p\n", uFrameAddr));1203 # else1204 1200 uintptr_t uESP; 1205 1201 __asm__ __volatile__("movl %%esp, %0" : "=r" (uESP)); 1206 1202 AssertMsg(!(uESP & 15), ("esp=%#p\n", uESP)); 1207 # endif1208 1203 #endif 1209 1204 if (env->interrupt_request & CPU_INTERRUPT_EXTERNAL_HARD)
Note:
See TracChangeset
for help on using the changeset viewer.