diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-05-11 11:59:40 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-05-11 11:59:42 +0000 |
commit | de6fc4a429b69f074dc6d28b52197b425aacd78c (patch) | |
tree | 879e5eacda2af3bad1aa9dc81ea08922c6c26cc8 /compiler/optimizing/code_generator_arm.cc | |
parent | 99a77162e9dc351da14bb7819a2718395d7277ed (diff) | |
parent | e1811ed6b57a54dc8ebd327e4bd2c4422092a3a0 (diff) |
Merge "ARM64: Share address computation across SIMD LDRs/STRs."
Diffstat (limited to 'compiler/optimizing/code_generator_arm.cc')
-rw-r--r-- | compiler/optimizing/code_generator_arm.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/compiler/optimizing/code_generator_arm.cc b/compiler/optimizing/code_generator_arm.cc index cef5fdc70b..ab3d499235 100644 --- a/compiler/optimizing/code_generator_arm.cc +++ b/compiler/optimizing/code_generator_arm.cc @@ -6374,6 +6374,15 @@ void InstructionCodeGeneratorARM::VisitIntermediateAddress(HIntermediateAddress* } } +void LocationsBuilderARM::VisitIntermediateAddressIndex(HIntermediateAddressIndex* instruction) { + LOG(FATAL) << "Unreachable " << instruction->GetId(); +} + +void InstructionCodeGeneratorARM::VisitIntermediateAddressIndex( + HIntermediateAddressIndex* instruction) { + LOG(FATAL) << "Unreachable " << instruction->GetId(); +} + void LocationsBuilderARM::VisitBoundsCheck(HBoundsCheck* instruction) { RegisterSet caller_saves = RegisterSet::Empty(); InvokeRuntimeCallingConvention calling_convention; |