summaryrefslogtreecommitdiffstats
path: root/compiler/dex/compiler_ir.cc
diff options
context:
space:
mode:
authorWei Wang <wangw@codeaurora.org>2015-10-23 14:37:55 -0700
committerSteve Kondik <steve@cyngn.com>2016-06-05 02:26:29 -0700
commit1c392f0b33a51e4206b328e05b9af82fea929046 (patch)
tree8106458fe840c7ec5df55f15f24e8450a4a87120 /compiler/dex/compiler_ir.cc
parenta85d319d9aa74ae12f80a896c15489c5575e76c0 (diff)
downloadart-1c392f0b33a51e4206b328e05b9af82fea929046.tar.gz
art-1c392f0b33a51e4206b328e05b9af82fea929046.tar.bz2
art-1c392f0b33a51e4206b328e05b9af82fea929046.zip
ART: set the check_bail_out flag to false by default
check_bail_out is disabled by default, set the flag to false Change-Id: I17ede384cb6b77e88e9618a50b4c07cdf3fd2d19
Diffstat (limited to 'compiler/dex/compiler_ir.cc')
-rw-r--r--compiler/dex/compiler_ir.cc28
1 files changed, 1 insertions, 27 deletions
diff --git a/compiler/dex/compiler_ir.cc b/compiler/dex/compiler_ir.cc
index 3a25b03bd3..6e1853bbd7 100644
--- a/compiler/dex/compiler_ir.cc
+++ b/compiler/dex/compiler_ir.cc
@@ -47,33 +47,7 @@ CompilationUnit::CompilationUnit(ArenaPool* pool, InstructionSet isa, CompilerDr
mir_graph(nullptr),
cg(nullptr),
timings("QuickCompiler", true, false),
- print_pass(false),
- compiler_(nullptr) {
-}
-
-CompilationUnit::CompilationUnit(ArenaPool* pool, InstructionSet isa, CompilerDriver* driver,
- ClassLinker* linker, const QuickCompiler* compiler)
- : compiler_driver(driver),
- class_linker(linker),
- dex_file(nullptr),
- class_loader(nullptr),
- class_def_idx(0),
- method_idx(0),
- access_flags(0),
- invoke_type(kDirect),
- shorty(nullptr),
- disable_opt(0),
- enable_debug(0),
- verbose(false),
- instruction_set(isa),
- target64(Is64BitInstructionSet(isa)),
- arena(pool),
- arena_stack(pool),
- mir_graph(nullptr),
- cg(nullptr),
- timings("QuickCompiler", true, false),
- print_pass(false),
- compiler_(compiler) {
+ print_pass(false) {
}
CompilationUnit::~CompilationUnit() {