# HG changeset patch # User Lukas Stadler # Date 1412838343 -7200 # Node ID ec56aea5c32d3e0754eea4b20ccc7da749475666 # Parent e1da729b3e4eb9b465b43c87231888501a0e02c0 dump "After TruffleTier" at log level 1 diff -r e1da729b3e4e -r ec56aea5c32d graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerImpl.java --- a/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerImpl.java Wed Oct 08 10:50:18 2014 +0200 +++ b/graal/com.oracle.graal.truffle/src/com/oracle/graal/truffle/TruffleCompilerImpl.java Thu Oct 09 09:05:43 2014 +0200 @@ -172,7 +172,7 @@ public CompilationResult compileMethodHelper(StructuredGraph graph, Assumptions assumptions, String name, SpeculationLog speculationLog, InstalledCode predefinedInstalledCode) { try (Scope s = Debug.scope("TruffleFinal")) { - Debug.dump(graph, "After TruffleTier"); + Debug.dump(1, graph, "After TruffleTier"); } catch (Throwable e) { throw Debug.handle(e); }