diff options
author | Calin Juravle <calin@google.com> | 2014-11-06 15:03:23 +0000 |
---|---|---|
committer | Calin Juravle <calin@google.com> | 2014-11-06 15:03:23 +0000 |
commit | d375fabd9e8cbb805fd12a33d94aa0729432ff3a (patch) | |
tree | b33d92eeefbbf93d60d174ee0b5a6e7988a3cfee | |
parent | d0d4852847432368b090c184d6639e573538dccf (diff) | |
download | android_art-d375fabd9e8cbb805fd12a33d94aa0729432ff3a.tar.gz android_art-d375fabd9e8cbb805fd12a33d94aa0729432ff3a.tar.bz2 android_art-d375fabd9e8cbb805fd12a33d94aa0729432ff3a.zip |
Fix build.
BuildCheckedDiv doesn't handle 12x instruction correctly.
Change-Id: I59571397cfb1b7ee89538e8e0b57725b863b0ee1
-rw-r--r-- | compiler/optimizing/builder.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc index d30f3e38c5..e43841a03d 100644 --- a/compiler/optimizing/builder.cc +++ b/compiler/optimizing/builder.cc @@ -1046,11 +1046,6 @@ bool HGraphBuilder::AnalyzeDexInstruction(const Instruction& instruction, uint32 break; } - case Instruction::DIV_INT_2ADDR: { - BuildCheckedDiv(instruction, dex_offset, Primitive::kPrimInt, false); - break; - } - case Instruction::DIV_FLOAT_2ADDR: { Binop_12x<HDiv>(instruction, Primitive::kPrimFloat); break; |