Changeset 15248 in vbox
- Timestamp:
- Dec 10, 2008 1:57:58 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/tcg/tcg.c
r14975 r15248 64 64 #include "tcg-op.h" 65 65 #include "elf.h" 66 67 68 #ifdef VBOX 69 /* 70 * Liveness analysis doesn't work well with 32-bit hosts and 64-bit targets, 71 * second element of the register pair to store 64-bit value is consedered 72 * dead, it seems. 73 * @todo: fix it in compiler 74 */ 75 #if defined(TARGET_X86_64) && (TCG_TARGET_REG_BITS == 32) 76 #undef USE_LIVENESS_ANALYSIS 77 #endif 78 #endif 66 79 67 80
Note:
See TracChangeset
for help on using the changeset viewer.