# HG changeset patch # User Josef Eisl # Date 1425467866 -3600 # Node ID 5d2309d32463f4c857d55e3233e8366f7b4d6feb # Parent ab4007bfc67d1d9f9ee80081c8f5ab81e563dd89 GraalCompiler: add LIR to LIRStages context. diff -r ab4007bfc67d -r 5d2309d32463 graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalCompiler.java --- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalCompiler.java Tue Mar 03 11:50:06 2015 +0100 +++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalCompiler.java Wed Mar 04 12:17:46 2015 +0100 @@ -331,7 +331,7 @@ LIRGenerationContext context = new LIRGenerationContext(lirGen, nodeLirGen, graph, schedule); new LIRGenerationPhase().apply(target, lirGenRes, codeEmittingOrder, linearScanOrder, context); - try (Scope s = Debug.scope("LIRStages", nodeLirGen)) { + try (Scope s = Debug.scope("LIRStages", nodeLirGen, lir)) { return emitLowLevel(target, codeEmittingOrder, linearScanOrder, lirGenRes, lirGen, lirSuites); } catch (Throwable e) { throw Debug.handle(e);