commit | 4b771a09fe1d947dee7265e3c018d7f1dd89a5d3 | [log] [tgz] |
---|---|---|
author | jeffhao <jeffhao@google.com> | Wed Jul 25 15:07:21 2012 -0700 |
committer | jeffhao <jeffhao@google.com> | Mon Jul 30 09:56:41 2012 -0700 |
tree | cfb02aaca1f8d389c73c5f6996775734859c7e5f | |
parent | 8772f7d8b066887340e39bcb99a0009dd168b4d2 [diff] [blame] |
Implemented fused branches for long and fp on x86. Also marked mips fused branches as unimplemented. Change-Id: I2d845874d73b03dfadcaf5a56d1d315bb1e63763
diff --git a/src/compiler/codegen/mips/Mips32/Gen.cc b/src/compiler/codegen/mips/Mips32/Gen.cc index 7712985..c304836 100644 --- a/src/compiler/codegen/mips/Mips32/Gen.cc +++ b/src/compiler/codegen/mips/Mips32/Gen.cc
@@ -517,4 +517,9 @@ #endif } +void genFusedLongCmpBranch(CompilationUnit* cUnit, BasicBlock* bb, MIR* mir) +{ + UNIMPLEMENTED(FATAL) << "Need codegen for fused long cmp branch"; +} + } // namespace art