diff options
Diffstat (limited to 'compiler/dex/compiler_ir.h')
-rw-r--r-- | compiler/dex/compiler_ir.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/dex/compiler_ir.h b/compiler/dex/compiler_ir.h index e7182a9..51c4a43 100644 --- a/compiler/dex/compiler_ir.h +++ b/compiler/dex/compiler_ir.h @@ -29,9 +29,9 @@ namespace art { -class Backend; class ClassLinker; class CompilerDriver; +class Mir2Lir; class MIRGraph; struct CompilationUnit { @@ -66,7 +66,7 @@ struct CompilationUnit { ArenaStack arena_stack; // Arenas for ScopedArenaAllocator. std::unique_ptr<MIRGraph> mir_graph; // MIR container. - std::unique_ptr<Backend> cg; // Target-specific codegen. + std::unique_ptr<Mir2Lir> cg; // Target-specific codegen. TimingLogger timings; bool print_pass; // Do we want to print a pass or not? |