From 98573f907b2f5d1ccb4f6549a487f567599a82d3 Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Wed, 30 Jan 2013 17:26:32 -0800 Subject: Fix portable build following object.h refactor. Change-Id: I26da618d7ad34a0a0fcaf24b52a57ce02c62382f --- src/compiler_llvm/stub_compiler.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/compiler_llvm/stub_compiler.cc') diff --git a/src/compiler_llvm/stub_compiler.cc b/src/compiler_llvm/stub_compiler.cc index 3a28b8733c..6b2a479426 100644 --- a/src/compiler_llvm/stub_compiler.cc +++ b/src/compiler_llvm/stub_compiler.cc @@ -22,7 +22,7 @@ #include "compiler.h" #include "compiler_llvm.h" #include "ir_builder.h" -#include "mirror/object.h" +#include "mirror/abstract_method.h" #include "runtime_support_func.h" #include "utils_llvm.h" @@ -142,7 +142,7 @@ CompiledInvokeStub* StubCompiler::CreateInvokeStub(bool is_static, // Invoke managed method now! llvm::Value* code_field_offset_value = - irb_.getPtrEquivInt(AbstractMethod::GetCodeOffset().Int32Value()); + irb_.getPtrEquivInt(mirror::AbstractMethod::GetCodeOffset().Int32Value()); llvm::Value* code_field_addr = irb_.CreatePtrDisp(method_object_addr, code_field_offset_value, -- cgit v1.2.3-59-g8ed1b