# HG changeset patch # User twisti # Date 1385081534 28800 # Node ID e2933e3d4fb03588ff323a3879385b96a1921176 # Parent d737287f5b320476e1a43b81d5f172f36048e290 print stack traces when doing CompileTheWorld diff -r d737287f5b32 -r e2933e3d4fb0 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompileTheWorld.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompileTheWorld.java Thu Nov 21 16:51:15 2013 -0800 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/CompileTheWorld.java Thu Nov 21 16:52:14 2013 -0800 @@ -89,8 +89,12 @@ this.startAt = startAt; this.stopAt = stopAt; - // We don't want the VM to exit when a method fails to compile. + // We don't want the VM to exit when a method fails to compile... ExitVMOnException.setValue(false); + + // ...but we want to see exceptions. + PrintBailout.setValue(true); + PrintStackTraceOnException.setValue(true); } /**