diff options
| author | 2013-01-31 15:21:37 -0800 | |
|---|---|---|
| committer | 2013-02-01 12:22:53 -0800 | |
| commit | 641ce0371c2f0dc95d26be02d8366124c8b66653 (patch) | |
| tree | 5c132a223a739e852849d6a0d1b9ffef4305dfc3 /src/compiler_llvm/stub_compiler.cc | |
| parent | 6cbd384cb98c6619c73fe4f76ef40a34ac6f355d (diff) | |
Rename compiler_llvm CompilationUnit to LlvmCompilationUnit
Also fixed stray ART_TEST_CFLAGS to LOCAL_CFLAGS
Also fixed relative includes
Tried to change CompilationUnit to reference LlvmCompilationUnit, but
that causes issues because of the split libart-compiler
libart-compiler-llvm.
Change-Id: I7a490f339add6355a20c1cedae858ccf6967a6aa
Diffstat (limited to 'src/compiler_llvm/stub_compiler.cc')
| -rw-r--r-- | src/compiler_llvm/stub_compiler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler_llvm/stub_compiler.cc b/src/compiler_llvm/stub_compiler.cc index 6b2a479426..e6bee7b620 100644 --- a/src/compiler_llvm/stub_compiler.cc +++ b/src/compiler_llvm/stub_compiler.cc @@ -17,11 +17,11 @@ #include "stub_compiler.h" #include "base/logging.h" -#include "compilation_unit.h" #include "compiled_method.h" #include "compiler.h" #include "compiler_llvm.h" #include "ir_builder.h" +#include "llvm_compilation_unit.h" #include "mirror/abstract_method.h" #include "runtime_support_func.h" #include "utils_llvm.h" @@ -40,7 +40,7 @@ namespace compiler_llvm { using namespace runtime_support; -StubCompiler::StubCompiler(CompilationUnit* cunit, Compiler& compiler) +StubCompiler::StubCompiler(LlvmCompilationUnit* cunit, Compiler& compiler) : cunit_(cunit), compiler_(&compiler), module_(cunit_->GetModule()), context_(cunit_->GetLLVMContext()), irb_(*cunit_->GetIRBuilder()) { } |