diff options
Diffstat (limited to 'src/compiler/codegen/MethodCodegenDriver.cc')
| -rw-r--r-- | src/compiler/codegen/MethodCodegenDriver.cc | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/src/compiler/codegen/MethodCodegenDriver.cc b/src/compiler/codegen/MethodCodegenDriver.cc index 6de3a9c3d9..38c2117036 100644 --- a/src/compiler/codegen/MethodCodegenDriver.cc +++ b/src/compiler/codegen/MethodCodegenDriver.cc @@ -102,7 +102,11 @@ void genInvoke(CompilationUnit* cUnit, MIR* mir, InvokeType type, bool isRange)      if (DISPLAY_MISSING_TARGETS) {          genShowTarget(cUnit);      } +#if defined(TARGET_MIPS) +    UNIMPLEMENTED(FATAL) << "Need to handle common target register"; +#else      opReg(cUnit, kOpBlx, rLR); +#endif      oatClobberCalleeSave(cUnit);  } |