changeset 19218:58f59bada2c1

GraalCompiler.emitLowLevel: remove unused parameter.
author Josef Eisl <josef.eisl@jku.at>
date Mon, 09 Feb 2015 11:10:00 +0100
parents 1f2a7647c8e9
children edd93c34d015
files graal/com.oracle.graal.baseline/src/com/oracle/graal/baseline/BaselineBytecodeParser.java graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalCompiler.java
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.baseline/src/com/oracle/graal/baseline/BaselineBytecodeParser.java	Mon Feb 09 11:09:19 2015 +0100
+++ b/graal/com.oracle.graal.baseline/src/com/oracle/graal/baseline/BaselineBytecodeParser.java	Mon Feb 09 11:10:00 2015 +0100
@@ -145,7 +145,7 @@
                 }
 
                 try (Scope s = Debug.scope("LowLevelTier", this)) {
-                    return GraalCompiler.emitLowLevel(backend, target, lir, codeEmittingOrder, linearScanOrder, lirGenRes, gen);
+                    return GraalCompiler.emitLowLevel(backend, target, codeEmittingOrder, linearScanOrder, lirGenRes, gen);
                 } catch (Throwable e) {
                     throw Debug.handle(e);
                 }
--- a/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalCompiler.java	Mon Feb 09 11:09:19 2015 +0100
+++ b/graal/com.oracle.graal.compiler/src/com/oracle/graal/compiler/GraalCompiler.java	Mon Feb 09 11:10:00 2015 +0100
@@ -338,7 +338,7 @@
             }
 
             try (Scope s = Debug.scope("LowLevelTier", nodeLirGen)) {
-                return emitLowLevel(backend, target, lir, codeEmittingOrder, linearScanOrder, lirGenRes, lirGen);
+                return emitLowLevel(backend, target, codeEmittingOrder, linearScanOrder, lirGenRes, lirGen);
             } catch (Throwable e) {
                 throw Debug.handle(e);
             }
@@ -347,7 +347,7 @@
         }
     }
 
-    public static <T extends AbstractBlock<T>> LIRGenerationResult emitLowLevel(Backend backend, TargetDescription target, LIR lir, List<T> codeEmittingOrder, List<T> linearScanOrder,
+    public static <T extends AbstractBlock<T>> LIRGenerationResult emitLowLevel(Backend backend, TargetDescription target, List<T> codeEmittingOrder, List<T> linearScanOrder,
                     LIRGenerationResult lirGenRes, LIRGeneratorTool lirGen) {
         try (Scope s0 = Debug.scope("LowLevelHighTier")) {
             LowLevelHighTierPhase.Context c = new LowLevelHighTierPhase.Context(lirGen);