diff options
author | Andreas Gampe <agampe@google.com> | 2015-01-27 14:31:40 -0800 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-01-27 15:23:06 -0800 |
commit | 9c462086269324350516b3394d478f1d71a4b5d1 (patch) | |
tree | 4b2a29b0cda0ba50dfb09a6bcc83a4cfecf3769e /compiler/dex/compiler_ir.h | |
parent | 04a77807a657e86495e7ececf7dc530fa5003c4c (diff) | |
download | art-9c462086269324350516b3394d478f1d71a4b5d1.zip art-9c462086269324350516b3394d478f1d71a4b5d1.tar.gz art-9c462086269324350516b3394d478f1d71a4b5d1.tar.bz2 |
ART: Even more Quick cleanup
Remove Backend.
Change-Id: I247cc65ccda6a362ba1a8f5e73e7f12ecd980a87
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? |