diff options
author | 2016-12-12 15:26:10 +0000 | |
---|---|---|
committer | 2016-12-12 15:26:11 +0000 | |
commit | 7d81bf2c9de138a65ea7189df18bc88f2c4fe6c5 (patch) | |
tree | 4fd804520510a1701a5bf8aaa74171a583152f27 /compiler/optimizing/nodes.cc | |
parent | c836b5a8a5ea00b0cd332d5e60c9ec10ae1e74fb (diff) | |
parent | 5b12f7973636bfea29da3956a9baa7a6bbe2b666 (diff) |
Merge "Add kJitTableAddress for HLoadClass."
Diffstat (limited to 'compiler/optimizing/nodes.cc')
-rw-r--r-- | compiler/optimizing/nodes.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/nodes.cc b/compiler/optimizing/nodes.cc index 594255c625..925d4f1fd1 100644 --- a/compiler/optimizing/nodes.cc +++ b/compiler/optimizing/nodes.cc @@ -2487,8 +2487,8 @@ std::ostream& operator<<(std::ostream& os, HLoadClass::LoadKind rhs) { return os << "BootImageLinkTimePcRelative"; case HLoadClass::LoadKind::kBootImageAddress: return os << "BootImageAddress"; - case HLoadClass::LoadKind::kDexCacheAddress: - return os << "DexCacheAddress"; + case HLoadClass::LoadKind::kJitTableAddress: + return os << "JitTableAddress"; case HLoadClass::LoadKind::kDexCachePcRelative: return os << "DexCachePcRelative"; case HLoadClass::LoadKind::kDexCacheViaMethod: |