diff options
author | 2017-01-06 14:43:11 +0000 | |
---|---|---|
committer | 2017-01-06 14:45:17 +0000 | |
commit | 4d1be4920fefe2c1f7cb40357842c6587cdcc50e (patch) | |
tree | 5583283f076b3fbd996bbdfbf69cc3ae3938ef95 /compiler/optimizing/sharpening.cc | |
parent | 16722603e0f0ef286085fbe9b2cbe9ccad86bfef (diff) |
Remove the IsInDexCache flag from HLoadString.
This flag was obsolete and always false.
Test: m test-art-host
Change-Id: Iabefc068908ff4f994b63e7e18a2a27c25a0919e
Diffstat (limited to 'compiler/optimizing/sharpening.cc')
-rw-r--r-- | compiler/optimizing/sharpening.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/optimizing/sharpening.cc b/compiler/optimizing/sharpening.cc index 9fdeccfa1a..ca26c30dcf 100644 --- a/compiler/optimizing/sharpening.cc +++ b/compiler/optimizing/sharpening.cc @@ -270,7 +270,6 @@ void HSharpening::SharpenClass(HLoadClass* load_class, void HSharpening::ProcessLoadString(HLoadString* load_string) { DCHECK_EQ(load_string->GetLoadKind(), HLoadString::LoadKind::kDexCacheViaMethod); - DCHECK(!load_string->IsInDexCache()); const DexFile& dex_file = load_string->GetDexFile(); dex::StringIndex string_index = load_string->GetStringIndex(); |