# HG changeset patch # User Doug Simon # Date 1445420655 -7200 # Node ID ce6b9837f602c25754408c2cd9c413e36bfa8593 # Parent ced0668ae71f5b0f0544adbefef909f0c6466a7d made ExitVMOnException false by default diff -r ced0668ae71f -r ce6b9837f602 jvmci/jdk.vm.ci.compiler/src/jdk/vm/ci/compiler/Compiler.java --- 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 PrintAfterCompilation = new OptionValue<>(false); @Option(help = "", type = OptionType.Debug) OptionValue PrintBailout = new OptionValue<>(false); @Option(help = "", type = OptionType.Debug) OptionValue ExitVMOnBailout = new OptionValue<>(false); - @Option(help = "", type = OptionType.Debug) OptionValue ExitVMOnException = new OptionValue<>(true); + @Option(help = "", type = OptionType.Debug) OptionValue ExitVMOnException = new OptionValue<>(false); @Option(help = "", type = OptionType.Debug) OptionValue PrintStackTraceOnException = new OptionValue<>(false); /**