summaryrefslogtreecommitdiff
path: root/compiler/optimizing/builder.cc
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2014-10-28 11:21:22 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-10-28 11:21:22 +0000
commit4816ecfc1b2d544685ec5edcdeaad6870f6bfd7e (patch)
tree81af9c148bf1ac0806e193ac1958deb3bf4c7a9a /compiler/optimizing/builder.cc
parentd3271e8a48768ed53bfa2515474b57245e7d9a41 (diff)
parent705664321a5cc1418255172f92d7d7195cf60a7b (diff)
Merge "Add long bitwise not instruction in the optimizing compiler."
Diffstat (limited to 'compiler/optimizing/builder.cc')
-rw-r--r--compiler/optimizing/builder.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc
index e4dee46c39..cc9c6c15b2 100644
--- a/compiler/optimizing/builder.cc
+++ b/compiler/optimizing/builder.cc
@@ -758,6 +758,11 @@ bool HGraphBuilder::AnalyzeDexInstruction(const Instruction& instruction, uint32
break;
}
+ case Instruction::NOT_LONG: {
+ Unop_12x<HNot>(instruction, Primitive::kPrimLong);
+ break;
+ }
+
case Instruction::ADD_INT: {
Binop_23x<HAdd>(instruction, Primitive::kPrimInt);
break;