From a5b09a67034e57a6e10231dd4bd92f4cb50b824c Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Thu, 17 Nov 2016 15:21:22 -0800 Subject: ART: Add dex::TypeIndex Add abstraction for uint16_t type index. Test: m test-art-host Change-Id: I47708741c7c579cbbe59ab723c1e31c5fe71f83a --- runtime/interpreter/interpreter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/interpreter/interpreter.cc') diff --git a/runtime/interpreter/interpreter.cc b/runtime/interpreter/interpreter.cc index a32c800491..1b3d339f36 100644 --- a/runtime/interpreter/interpreter.cc +++ b/runtime/interpreter/interpreter.cc @@ -543,7 +543,7 @@ void EnterInterpreterFromDeoptimize(Thread* self, ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); // This is a suspend point. But it's ok since value has been set into shadow_frame. ObjPtr klass = class_linker->ResolveType( - instr->VRegB_21c(), shadow_frame->GetMethod()); + dex::TypeIndex(instr->VRegB_21c()), shadow_frame->GetMethod()); DCHECK(klass->IsStringClass()); } } else { -- cgit v1.2.3-59-g8ed1b