diff options
| author | 2016-11-09 14:20:41 +0000 | |
|---|---|---|
| committer | 2016-11-09 14:20:42 +0000 | |
| commit | 0d7dce879896a98ff4cd7626bd41650aef431e89 (patch) | |
| tree | b51596d8ced88f453f5face7ecaaf3364bb2a60e /compiler/optimizing/nodes.h | |
| parent | c3410ca114d30a7bb74705546778175ef888e444 (diff) | |
| parent | 54d6a207341ad45cb5eceed71a344073ed6d4e31 (diff) | |
Merge "Fix 552-checker-sharpening for PIC test."
Diffstat (limited to 'compiler/optimizing/nodes.h')
| -rw-r--r-- | compiler/optimizing/nodes.h | 6 |
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); |