From be44dcf6b2338782c276483c6c79a4ab17ca98a9 Mon Sep 17 00:00:00 2001 From: Mingyao Yang Date: Wed, 30 Nov 2016 14:17:32 -0800 Subject: Add LoadString kind of kJitTableAddress for dump-cfg. Test: manual Change-Id: Ifcae7b26f666930766635d8b3ed7a495494cddf7 --- compiler/optimizing/nodes.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'compiler/optimizing/nodes.cc') diff --git a/compiler/optimizing/nodes.cc b/compiler/optimizing/nodes.cc index 680381a548..594255c625 100644 --- a/compiler/optimizing/nodes.cc +++ b/compiler/optimizing/nodes.cc @@ -2543,6 +2543,8 @@ std::ostream& operator<<(std::ostream& os, HLoadString::LoadKind rhs) { return os << "BssEntry"; case HLoadString::LoadKind::kDexCacheViaMethod: return os << "DexCacheViaMethod"; + case HLoadString::LoadKind::kJitTableAddress: + return os << "JitTableAddress"; default: LOG(FATAL) << "Unknown HLoadString::LoadKind: " << static_cast(rhs); UNREACHABLE(); -- cgit v1.2.3-59-g8ed1b