diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-02-24 16:02:06 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2015-02-24 16:04:07 +0000 |
commit | d8ef2e991a1a65f47a26a1eb8c6b34c92b775d6b (patch) | |
tree | d3aa88b42db86584724a2566da304aff70be5613 /compiler/optimizing/code_generator_arm.cc | |
parent | a48c573d2351177d878e36e003f0cdf4d7f9328f (diff) | |
download | art-d8ef2e991a1a65f47a26a1eb8c6b34c92b775d6b.tar.gz art-d8ef2e991a1a65f47a26a1eb8c6b34c92b775d6b.tar.bz2 art-d8ef2e991a1a65f47a26a1eb8c6b34c92b775d6b.zip |
not-int can also take non-int (byte and short) instructions.
So we should use the result-type instead if the input type
for knowning what instruction to use.
Bug: 19454010
Change-Id: I88782ad27ae8c8e1b7868afede5057d26f14685a
Diffstat (limited to 'compiler/optimizing/code_generator_arm.cc')
-rw-r--r-- | compiler/optimizing/code_generator_arm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator_arm.cc b/compiler/optimizing/code_generator_arm.cc index e864ae1cec..cda5c1a99c 100644 --- a/compiler/optimizing/code_generator_arm.cc +++ b/compiler/optimizing/code_generator_arm.cc @@ -2478,7 +2478,7 @@ void InstructionCodeGeneratorARM::VisitNot(HNot* not_) { LocationSummary* locations = not_->GetLocations(); Location out = locations->Out(); Location in = locations->InAt(0); - switch (not_->InputAt(0)->GetType()) { + switch (not_->GetResultType()) { case Primitive::kPrimInt: __ mvn(out.AsRegister<Register>(), ShifterOperand(in.AsRegister<Register>())); break; |