summaryrefslogtreecommitdiff
path: root/compiler/optimizing/code_generator_arm.cc
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2016-11-09 09:55:45 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-11-09 09:55:45 +0000
commit0864c98b10cb8ca306671cabaa9be2a4068a2711 (patch)
tree56d9bb3097c51d5efbf67cd7516b0bc3c8e16616 /compiler/optimizing/code_generator_arm.cc
parent4c45ffaf6329d40e3249894cfb078d3d274ddfd5 (diff)
parentac3ebc3150760425ed00abd56da48f9a6e0666bc (diff)
Merge "JIT root tables."
Diffstat (limited to 'compiler/optimizing/code_generator_arm.cc')
-rw-r--r--compiler/optimizing/code_generator_arm.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/optimizing/code_generator_arm.cc b/compiler/optimizing/code_generator_arm.cc
index 08d22f84d0..f9ef96ceb5 100644
--- a/compiler/optimizing/code_generator_arm.cc
+++ b/compiler/optimizing/code_generator_arm.cc
@@ -5889,6 +5889,9 @@ HLoadString::LoadKind CodeGeneratorARM::GetSupportedLoadStringKind(
case HLoadString::LoadKind::kBssEntry:
DCHECK(!Runtime::Current()->UseJitCompilation());
break;
+ case HLoadString::LoadKind::kJitTableAddress:
+ DCHECK(Runtime::Current()->UseJitCompilation());
+ return HLoadString::LoadKind::kDexCacheViaMethod;
case HLoadString::LoadKind::kDexCacheViaMethod:
break;
}