diff options
| author | 2012-03-09 15:46:57 -0800 | |
|---|---|---|
| committer | 2012-03-09 15:46:57 -0800 | |
| commit | e7825db4cfe76eabf5e3ebc0358b5e067ca3f484 (patch) | |
| tree | cacc5b5d3c41e30943df6edaadb614c0cfff78ee /src/compiler/codegen/mips/MipsRallocUtil.cc | |
| parent | b3bd5f07884f5a1f2b84224363b1372d7c28d447 (diff) | |
Fix build.
The compilers had drifted a bit while I was away.
Change-Id: I938a5992e8e100f512db4c7934ac4b3ec80e8138
Diffstat (limited to 'src/compiler/codegen/mips/MipsRallocUtil.cc')
| -rw-r--r-- | src/compiler/codegen/mips/MipsRallocUtil.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/compiler/codegen/mips/MipsRallocUtil.cc b/src/compiler/codegen/mips/MipsRallocUtil.cc index 22a19dbc77..41bc991704 100644 --- a/src/compiler/codegen/mips/MipsRallocUtil.cc +++ b/src/compiler/codegen/mips/MipsRallocUtil.cc @@ -151,6 +151,13 @@ extern RegLocation oatGetReturnWideAlt(CompilationUnit* cUnit) return res; } +extern RegLocation oatGetReturnAlt(CompilationUnit* cUnit) +{ + UNIMPLEMENTED(FATAL); + RegLocation res = LOC_C_RETURN; + return res; +} + extern RegLocation oatGetReturn(CompilationUnit* cUnit) { RegLocation res = LOC_C_RETURN; |