diff options
author | Roland Levillain <rpl@google.com> | 2014-10-23 18:07:44 +0100 |
---|---|---|
committer | Roland Levillain <rpl@google.com> | 2014-10-23 18:07:44 +0100 |
commit | 30ca3d847fe72cfa33e1b2473100ea2d8bea4517 (patch) | |
tree | a66582c2cb6026be2f59ba66ff437429b67bbe44 /compiler/optimizing/builder.cc | |
parent | 46fdec13b6dcaf932aa9fb1338f32df01aa0d959 (diff) | |
download | art-30ca3d847fe72cfa33e1b2473100ea2d8bea4517.tar.gz art-30ca3d847fe72cfa33e1b2473100ea2d8bea4517.tar.bz2 art-30ca3d847fe72cfa33e1b2473100ea2d8bea4517.zip |
Revert "Implement long negate instruction in the optimizing compiler."
This reverts commit 66ce173a40eff4392e9949ede169ccf3108be2db.
Diffstat (limited to 'compiler/optimizing/builder.cc')
-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 0ab7782e2..79cbd0ee2 100644 --- a/compiler/optimizing/builder.cc +++ b/compiler/optimizing/builder.cc @@ -748,11 +748,6 @@ bool HGraphBuilder::AnalyzeDexInstruction(const Instruction& instruction, uint32 break; } - case Instruction::NEG_LONG: { - Unop_12x<HNeg>(instruction, Primitive::kPrimLong); - break; - } - case Instruction::NOT_INT: { Unop_12x<HNot>(instruction, Primitive::kPrimInt); break; |