diff options
| author | 2012-03-01 14:51:57 -0800 | |
|---|---|---|
| committer | 2012-03-01 16:43:54 -0800 | |
| commit | 5de3494e4297c0d480409da3fecee39173f1d4e1 (patch) | |
| tree | 269cd3447925d0b474d47fb056da4730f288ee12 /src/compiler/codegen/MethodCodegenDriver.cc | |
| parent | 6edfde4ae89f3a16d22ca82c928a5dd420e9fce9 (diff) | |
Another step towards a Mips target
Updating the MIPS target to use the now common codegen routines.
Still much to do, but the general structure is sufficient to allow
work to begin on the other target.
Change-Id: I0d288fdfb59c8e76fad73185fdd56b345e87b604
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); } |