diff options
author | Roland Levillain <rpl@google.com> | 2014-10-23 18:12:09 +0100 |
---|---|---|
committer | Roland Levillain <rpl@google.com> | 2014-10-24 11:22:59 +0100 |
commit | 2e07b4f0a84a7968b4690c2b1be2e2f75cc6fa8e (patch) | |
tree | 2fc5c75594b2cf8be1d6bd295d36c627af1651fe /compiler/optimizing/builder.cc | |
parent | 02567379e7099682345fd59d45a23e17711c9ddd (diff) | |
download | art-2e07b4f0a84a7968b4690c2b1be2e2f75cc6fa8e.tar.gz art-2e07b4f0a84a7968b4690c2b1be2e2f75cc6fa8e.tar.bz2 art-2e07b4f0a84a7968b4690c2b1be2e2f75cc6fa8e.zip |
Revert "Revert "Implement long negate instruction in the optimizing compiler.""
This reverts commit 30ca3d847fe72cfa33e1b2473100ea2d8bea4517.
Change-Id: I188ca8d460d55d3a9966bcf31e0588575afa77d2
Diffstat (limited to 'compiler/optimizing/builder.cc')
-rw-r--r-- | compiler/optimizing/builder.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc index 79cbd0ee2..0ab7782e2 100644 --- a/compiler/optimizing/builder.cc +++ b/compiler/optimizing/builder.cc @@ -748,6 +748,11 @@ 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; |