diff graal/com.oracle.graal.hotspot.sparc/src/com/oracle/graal/hotspot/sparc/SPARCHotSpotBackend.java @ 19221:8d5c61b5cf67

Add Backend.getLowLevelCompilerConfiguration().
author Josef Eisl <josef.eisl@jku.at>
date Mon, 09 Feb 2015 13:24:53 +0100
parents 28e46ea20c93
children b689119b6f02
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot.sparc/src/com/oracle/graal/hotspot/sparc/SPARCHotSpotBackend.java	Mon Feb 09 13:20:04 2015 +0100
+++ b/graal/com.oracle.graal.hotspot.sparc/src/com/oracle/graal/hotspot/sparc/SPARCHotSpotBackend.java	Mon Feb 09 13:24:53 2015 +0100
@@ -53,6 +53,7 @@
 import com.oracle.graal.lir.asm.*;
 import com.oracle.graal.lir.framemap.*;
 import com.oracle.graal.lir.gen.*;
+import com.oracle.graal.lir.phases.*;
 import com.oracle.graal.lir.sparc.*;
 import com.oracle.graal.nodes.*;
 import com.oracle.graal.nodes.spi.*;
@@ -98,6 +99,11 @@
         return new SPARCHotSpotNodeLIRBuilder(getRuntime(), graph, lirGen);
     }
 
+    @Override
+    public LowLevelCompilerConfiguration getLowLevelCompilerConfiguration() {
+        return new DefaultLowLevelCompilerConfiguration();
+    }
+
     /**
      * Emits code to do stack overflow checking.
      *