diff options
Diffstat (limited to 'src/compiler/codegen/MethodCodegenDriver.cc')
| -rw-r--r-- | src/compiler/codegen/MethodCodegenDriver.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/codegen/MethodCodegenDriver.cc b/src/compiler/codegen/MethodCodegenDriver.cc index 76fca1014b..7f98f073ba 100644 --- a/src/compiler/codegen/MethodCodegenDriver.cc +++ b/src/compiler/codegen/MethodCodegenDriver.cc @@ -179,8 +179,8 @@ CallInfo* newCallInfo(CompilationUnit* cUnit, BasicBlock* bb, MIR* mir, { CallInfo* info = (CallInfo*)oatNew(cUnit, sizeof(CallInfo), true, kAllocMisc); -//FIXME: Disable all fusing as temporary workaround -#if 1 +//FIXME: Disable fusing for x86 +#if defined(TARGET_X86) info->result.location = kLocInvalid; #else MIR* moveResultMIR = oatFindMoveResult(cUnit, bb, mir); |