Disable move-result fusing

Work around bug in invoke/move-result fusing.  With this, runtests 003, 004,
010 and 044 work again.

Change-Id: Iecf8467434b32a1441635532c02b28756c057c83
diff --git a/src/compiler/codegen/MethodCodegenDriver.cc b/src/compiler/codegen/MethodCodegenDriver.cc
index edf880b..76fca10 100644
--- a/src/compiler/codegen/MethodCodegenDriver.cc
+++ b/src/compiler/codegen/MethodCodegenDriver.cc
@@ -179,7 +179,8 @@
 {
   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);