diff options
| author | 2016-09-28 17:41:06 +0000 | |
|---|---|---|
| committer | 2016-09-28 17:41:06 +0000 | |
| commit | 7f7fb9c0dcb5fc0ed251b3f9bb775de5278534a7 (patch) | |
| tree | f47ebd7b366af0e976cdb361677eb7720fe615b7 /compiler/optimizing/instruction_builder.cc | |
| parent | 1b6cf7fbca0fd90ae58938e4a16a77b79a83408e (diff) | |
| parent | 75a7db67f0e56bc0ccc63df4a6a1bb04ab3e86b1 (diff) | |
Merge "ART: Factor out IMT from ArtMethod"
Diffstat (limited to 'compiler/optimizing/instruction_builder.cc')
| -rw-r--r-- | compiler/optimizing/instruction_builder.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/instruction_builder.cc b/compiler/optimizing/instruction_builder.cc index 139daa71ce..3b08d9f989 100644 --- a/compiler/optimizing/instruction_builder.cc +++ b/compiler/optimizing/instruction_builder.cc @@ -21,6 +21,7 @@ #include "class_linker.h" #include "dex_instruction-inl.h" #include "driver/compiler_options.h" +#include "imtable-inl.h" #include "scoped_thread_state_change.h" namespace art { @@ -895,7 +896,7 @@ bool HInstructionBuilder::BuildInvoke(const Instruction& instruction, dex_pc, method_idx, resolved_method, - resolved_method->GetImtIndex()); + ImTable::GetImtIndex(resolved_method)); } return HandleInvoke(invoke, |