summaryrefslogtreecommitdiff
path: root/src/compiler_llvm/stub_compiler.cc
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2013-01-30 17:26:32 -0800
committer Ian Rogers <irogers@google.com> 2013-01-30 17:26:32 -0800
commit98573f907b2f5d1ccb4f6549a487f567599a82d3 (patch)
tree8f0c9510d3e1aa90be0950a9bc1973c343c488fd /src/compiler_llvm/stub_compiler.cc
parent2dd0e2cea360bc9206eb88ecc40d259e796c239d (diff)
Fix portable build following object.h refactor.
Change-Id: I26da618d7ad34a0a0fcaf24b52a57ce02c62382f
Diffstat (limited to 'src/compiler_llvm/stub_compiler.cc')
-rw-r--r--src/compiler_llvm/stub_compiler.cc4
1 files changed, 2 insertions, 2 deletions
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,