move setAutoflush() lines
authoradam <adam@megacz.com>
Mon, 3 Nov 2008 10:22:32 +0000 (11:22 +0100)
committeradam <adam@megacz.com>
Mon, 3 Nov 2008 10:22:32 +0000 (11:22 +0100)
src/edu/berkeley/fleet/ir/Context.java

index c7463fc..c9e6471 100644 (file)
@@ -46,6 +46,9 @@ public class Context {
     public final Fleet fleet;
     public Context(Fleet fleet) { this.fleet = fleet; }
 
+    private boolean autoflush = false;
+    public void setAutoflush(boolean a) { this.autoflush = a; }
+
     // FIXME: ability for a group of Contexts to share an "allocation
     // pool" because they will run concurrently.
     public HashSet<Ship>             allocatedShips       = new HashSet<Ship>();
@@ -313,9 +316,6 @@ public class Context {
             // FEATURE: clever instruction re-oredering?
         }
 
-        private boolean autoflush = false;
-        public void setAutoflush(boolean a) { this.autoflush = a; }
-
         /**
          *  The code emitted by this method makes the following assumptions:
          *