Changeset 5369 in vbox
- Timestamp:
- Oct 18, 2007 9:58:21 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 25437
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r5262 r5369 3441 3441 3442 3442 memset(&Cpu, 0, sizeof(Cpu)); 3443 #ifdef RT_ARCH_X86 3443 3444 Cpu.mode = CPUMODE_32BIT; 3445 #else 3446 Cpu.mode = CPUMODE_64BIT; 3447 #endif 3444 3448 3445 3449 RTLogPrintf("Recompiled Code: %p %#lx (%ld) bytes\n", pvCode, cb, cb); … … 3453 3457 RTLogPrintf("disas error\n"); 3454 3458 cbInstr = 1; 3459 #ifdef RT_ARCH_AMD64 /** @todo remove when DISInstr starts supporing 64-bit code. */ 3460 break; 3461 #endif 3455 3462 } 3456 3463 off += cbInstr;
Note:
See TracChangeset
for help on using the changeset viewer.