changeset 22696:ce6b9837f602

made ExitVMOnException false by default
author Doug Simon <doug.simon@oracle.com>
date Wed, 21 Oct 2015 11:44:15 +0200
parents ced0668ae71f
children 57646377e480
files jvmci/jdk.vm.ci.compiler/src/jdk/vm/ci/compiler/Compiler.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/jvmci/jdk.vm.ci.compiler/src/jdk/vm/ci/compiler/Compiler.java	Mon Oct 19 18:41:25 2015 -0700
+++ b/jvmci/jdk.vm.ci.compiler/src/jdk/vm/ci/compiler/Compiler.java	Wed Oct 21 11:44:15 2015 +0200
@@ -35,7 +35,7 @@
     @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> PrintAfterCompilation = new OptionValue<>(false);
     @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> PrintBailout = new OptionValue<>(false);
     @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> ExitVMOnBailout = new OptionValue<>(false);
-    @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> ExitVMOnException = new OptionValue<>(true);
+    @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> ExitVMOnException = new OptionValue<>(false);
     @Option(help = "", type = OptionType.Debug) OptionValue<Boolean> PrintStackTraceOnException = new OptionValue<>(false);
 
     /**