diff options
author | 2018-05-14 08:53:38 +0100 | |
---|---|---|
committer | 2018-05-14 16:49:55 +0100 | |
commit | 06d10a78506fae7e033795cda7b1d9d0e1f1fff5 (patch) | |
tree | 91f94a605395776710f3d14298613a803158f3aa /compiler/optimizing/code_generator.cc | |
parent | 93d301397c83b08f6fc165847a3d518e1031f392 (diff) |
ART: Add dex::ProtoIndex
Test: m -j32 test-art-host
Change-Id: Ic2d2a7a43be1b8590b97cdf3729200b043ffc6a3
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r-- | compiler/optimizing/code_generator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index f57333741c..fb556f435a 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -771,7 +771,7 @@ void CodeGenerator::CreateLoadMethodTypeRuntimeCallLocationSummary( void CodeGenerator::GenerateLoadMethodTypeRuntimeCall(HLoadMethodType* method_type) { LocationSummary* locations = method_type->GetLocations(); - MoveConstant(locations->GetTemp(0), method_type->GetProtoIndex()); + MoveConstant(locations->GetTemp(0), method_type->GetProtoIndex().index_); CheckEntrypointTypes<kQuickResolveMethodType, void*, uint32_t>(); InvokeRuntime(kQuickResolveMethodType, method_type, method_type->GetDexPc()); } |