diff options
author | 2014-10-23 16:14:56 +0000 | |
---|---|---|
committer | 2014-10-23 16:14:57 +0000 | |
commit | 46fdec13b6dcaf932aa9fb1338f32df01aa0d959 (patch) | |
tree | 552bc6275388c3bc6ecd4f549ffcd1422c020f82 /compiler/optimizing/builder.cc | |
parent | e2b2cbf8bffdf9ee3ece487fde9ac78652b4abaf (diff) | |
parent | 66ce173a40eff4392e9949ede169ccf3108be2db (diff) |
Merge "Implement long negate instruction in the optimizing compiler."
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 79cbd0ee21..0ab7782e2c 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; |