summaryrefslogtreecommitdiff
path: root/compiler/optimizing/nodes.h
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2016-11-09 14:20:41 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-11-09 14:20:42 +0000
commit0d7dce879896a98ff4cd7626bd41650aef431e89 (patch)
treeb51596d8ced88f453f5face7ecaaf3364bb2a60e /compiler/optimizing/nodes.h
parentc3410ca114d30a7bb74705546778175ef888e444 (diff)
parent54d6a207341ad45cb5eceed71a344073ed6d4e31 (diff)
Merge "Fix 552-checker-sharpening for PIC test."
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r--compiler/optimizing/nodes.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h
index a946e319c7..0e449e3b05 100644
--- a/compiler/optimizing/nodes.h
+++ b/compiler/optimizing/nodes.h
@@ -5679,10 +5679,6 @@ class HLoadString FINAL : public HInstruction {
// GetIncludePatchInformation().
kBootImageAddress,
- // Load from the resolved strings array at an absolute address.
- // Used for strings outside the boot image referenced by JIT-compiled code.
- kDexCacheAddress,
-
// Load from an entry in the .bss section using a PC-relative load.
// Used for strings outside boot image when .bss is accessible with a PC-relative load.
kBssEntry,
@@ -5812,7 +5808,7 @@ class HLoadString FINAL : public HInstruction {
}
static bool HasAddress(LoadKind load_kind) {
- return load_kind == LoadKind::kBootImageAddress || load_kind == LoadKind::kDexCacheAddress;
+ return load_kind == LoadKind::kBootImageAddress;
}
void SetLoadKindInternal(LoadKind load_kind);