diff graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/debug/TTY.java @ 2888:224412c24426

Changed C1X=>Graal and c1x=>graal in Java code.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 08 Jun 2011 13:35:43 +0200
parents d90bf514d647
children
line wrap: on
line diff
--- a/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/debug/TTY.java	Wed Jun 08 13:19:56 2011 +0200
+++ b/graal/com.oracle.max.graal.compiler/src/com/oracle/max/graal/compiler/debug/TTY.java	Wed Jun 08 13:35:43 2011 +0200
@@ -84,12 +84,12 @@
         }
     }
 
-    public static final String C1X_TTY_LOG_FILE_PROPERTY = "c1x.tty.file";
+    public static final String GRAAL_TTY_LOG_FILE_PROPERTY = "graal.tty.file";
 
     private static final LogStream log;
     static {
         PrintStream out = System.out;
-        String value = System.getProperty(C1X_TTY_LOG_FILE_PROPERTY);
+        String value = System.getProperty(GRAAL_TTY_LOG_FILE_PROPERTY);
         if (value != null) {
             try {
                 out = new PrintStream(new FileOutputStream(value));