summaryrefslogtreecommitdiffstats
path: root/compiler/jit
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-03-05 13:08:45 -0800
committerAndreas Gampe <agampe@google.com>2015-03-05 18:42:21 -0800
commit6cf49e57ad7a61e1fffd5b1dfae9179c3ca5703d (patch)
tree126d4a09078ebfb6b5eed5d67d6300217132a1bb /compiler/jit
parent66b26662ad0c52c648c9b5ea4a99149091e842b4 (diff)
downloadart-6cf49e57ad7a61e1fffd5b1dfae9179c3ca5703d.zip
art-6cf49e57ad7a61e1fffd5b1dfae9179c3ca5703d.tar.gz
art-6cf49e57ad7a61e1fffd5b1dfae9179c3ca5703d.tar.bz2
ART: Add option to abort dex2oat on hard failure
Add an option that aborts dex2oat when a hard verifier failure occurs. Bug: 19606409 Change-Id: I53195284e22fe6207274101e85745af763c06271
Diffstat (limited to 'compiler/jit')
-rw-r--r--compiler/jit/jit_compiler.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/jit/jit_compiler.cc b/compiler/jit/jit_compiler.cc
index ff98d4a..04efa21 100644
--- a/compiler/jit/jit_compiler.cc
+++ b/compiler/jit/jit_compiler.cc
@@ -80,7 +80,8 @@ JitCompiler::JitCompiler() : total_time_(0) {
false, // pic
nullptr,
pass_manager_options,
- nullptr));
+ nullptr,
+ false));
const InstructionSet instruction_set = kRuntimeISA;
instruction_set_features_.reset(InstructionSetFeatures::FromCppDefines());
cumulative_logger_.reset(new CumulativeLogger("jit times"));