diff options
author | 2014-10-23 09:17:41 +0000 | |
---|---|---|
committer | 2014-10-23 09:17:42 +0000 | |
commit | 1122c7fc277130814dd1d47b5e8be3ac35b1a5fc (patch) | |
tree | 06e7b8f42b392fa7077d0612da94d4696e3c6a6e /compiler/optimizing/builder.cc | |
parent | fd9e95619d94608687af201bb296b807716cc7c3 (diff) | |
parent | 1cc5f251df558b0e22cea5000626365eb644c727 (diff) |
Merge "Implement int bit-wise not operation 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 4d575cbdcf..f48f4c3990 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::NOT_INT: { + Unop_12x<HNot>(instruction, Primitive::kPrimInt); + break; + } + case Instruction::ADD_INT: { Binop_23x<HAdd>(instruction, Primitive::kPrimInt); break; |