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