diff graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/GraalCompiler.java @ 3068:ea778c37bdae

Updated GRAAL_README. Add new short-cut flag for graph output "-G:Plot".
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Thu, 23 Jun 2011 16:40:53 +0200
parents fef84503ab7d
children 05dcd49a2df2 ce12808b8ff2
line wrap: on
line diff
--- a/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/GraalCompiler.java	Wed Jun 22 22:27:02 2011 +0200
+++ b/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/GraalCompiler.java	Thu Jun 23 16:40:53 2011 +0200
@@ -142,7 +142,7 @@
         if (GraalOptions.PrintDOTGraphToPdf) {
             addCompilationObserver(new GraphvizPrinterObserver(true));
         }
-        if (GraalOptions.PrintIdealGraphLevel != 0) {
+        if (GraalOptions.PrintIdealGraphLevel != 0 || GraalOptions.Plot) {
             CompilationObserver observer;
             if (GraalOptions.PrintIdealGraphFile) {
                 observer = new IdealGraphPrinterObserver();