summaryrefslogtreecommitdiffstats
path: root/compiler/dex/quick/codegen_util.cc
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-01-27 14:31:40 -0800
committerAndreas Gampe <agampe@google.com>2015-01-27 15:23:06 -0800
commit9c462086269324350516b3394d478f1d71a4b5d1 (patch)
tree4b2a29b0cda0ba50dfb09a6bcc83a4cfecf3769e /compiler/dex/quick/codegen_util.cc
parent04a77807a657e86495e7ececf7dc530fa5003c4c (diff)
downloadart-9c462086269324350516b3394d478f1d71a4b5d1.tar.gz
art-9c462086269324350516b3394d478f1d71a4b5d1.tar.bz2
art-9c462086269324350516b3394d478f1d71a4b5d1.zip
ART: Even more Quick cleanup
Remove Backend. Change-Id: I247cc65ccda6a362ba1a8f5e73e7f12ecd980a87
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
-rw-r--r--compiler/dex/quick/codegen_util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc
index 52b2e15342..04113dba81 100644
--- a/compiler/dex/quick/codegen_util.cc
+++ b/compiler/dex/quick/codegen_util.cc
@@ -967,12 +967,12 @@ ConditionCode Mir2Lir::NegateComparison(ConditionCode before) {
// TODO: move to mir_to_lir.cc
Mir2Lir::Mir2Lir(CompilationUnit* cu, MIRGraph* mir_graph, ArenaAllocator* arena)
- : Backend(arena),
- literal_list_(nullptr),
+ : literal_list_(nullptr),
method_literal_list_(nullptr),
class_literal_list_(nullptr),
code_literal_list_(nullptr),
first_fixup_(nullptr),
+ arena_(arena),
cu_(cu),
mir_graph_(mir_graph),
switch_tables_(arena->Adapter(kArenaAllocSwitchTable)),