diff options
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/image_writer.cc | 1 | ||||
| -rw-r--r-- | compiler/optimizing/instruction_builder.cc | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/compiler/image_writer.cc b/compiler/image_writer.cc index ad881b72f0..6b5758bc8f 100644 --- a/compiler/image_writer.cc +++ b/compiler/image_writer.cc @@ -45,6 +45,7 @@ #include "gc/space/space-inl.h" #include "globals.h" #include "image.h" +#include "imt_conflict_table.h" #include "intern_table.h" #include "linear_alloc.h" #include "lock_word.h" 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, |