diff graal/com.oracle.graal.lir/src/com/oracle/graal/lir/FrameMap.java @ 18153:1c4a1a46e891

Introduce FrameMapBuilderImpl.
author Josef Eisl <josef.eisl@jku.at>
date Wed, 22 Oct 2014 17:28:05 +0200
parents ff694c40bdee
children c88ab4f1f04a
line wrap: on
line diff
--- a/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/FrameMap.java	Wed Oct 22 16:54:51 2014 +0200
+++ b/graal/com.oracle.graal.lir/src/com/oracle/graal/lir/FrameMap.java	Wed Oct 22 17:28:05 2014 +0200
@@ -38,7 +38,7 @@
  * stack pointer, while spill slots are indexed from the beginning of the frame (and the total frame
  * size has to be added to get the actual offset from the stack pointer).
  */
-public abstract class FrameMap implements FrameMapBuilder {
+public abstract class FrameMap {
 
     private final TargetDescription target;
     private final RegisterConfig registerConfig;
@@ -378,10 +378,4 @@
             assert isConstant(location);
         }
     }
-
-    @Override
-    public FrameMap buildFrameMap() {
-        finish();
-        return this;
-    }
 }