From 1212a022fa5f8ef9585d765b1809521812af882c Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Mon, 4 Mar 2013 10:48:41 -0800 Subject: Move the Compiler to CompilerDriver. Change-Id: I0bb4d3c2b79b45fd8ef180688c767712b0c55978 --- src/compiler/dex/compiler_ir.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/compiler/dex/compiler_ir.h') diff --git a/src/compiler/dex/compiler_ir.h b/src/compiler/dex/compiler_ir.h index c961d0baaf..04dee77b5a 100644 --- a/src/compiler/dex/compiler_ir.h +++ b/src/compiler/dex/compiler_ir.h @@ -19,7 +19,7 @@ #include #include "dex_instruction.h" -#include "compiler.h" +#include "compiler/driver/compiler_driver.h" #include "compiler_utility.h" #include "oat_compilation_unit.h" #include "safe_map.h" @@ -274,7 +274,7 @@ class Codegen; struct CompilationUnit { CompilationUnit() : num_blocks(0), - compiler(NULL), + compiler_driver(NULL), class_linker(NULL), dex_file(NULL), class_loader(NULL), @@ -366,7 +366,7 @@ struct CompilationUnit { int num_blocks; GrowableList block_list; - Compiler* compiler; // Compiler driving this compiler. + CompilerDriver* compiler_driver; ClassLinker* class_linker; // Linker to resolve fields and methods. const DexFile* dex_file; // DexFile containing the method being compiled. jobject class_loader; // compiling method's class loader. -- cgit v1.2.3-59-g8ed1b