diff graal/GraalCompiler/src/com/sun/c1x/lir/LIRBlock.java @ 2777:3e4d992fd312

towards replacing computelinearscanorder with scheduler.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Tue, 24 May 2011 14:40:47 +0200
parents 43ffa0e47a46
children 2ac7b30b7290
line wrap: on
line diff
--- a/graal/GraalCompiler/src/com/sun/c1x/lir/LIRBlock.java	Tue May 24 13:55:56 2011 +0200
+++ b/graal/GraalCompiler/src/com/sun/c1x/lir/LIRBlock.java	Tue May 24 14:40:47 2011 +0200
@@ -219,4 +219,8 @@
         successors.clear();
         predecessors.clear();
     }
+
+    public void setInstructions(List<Instruction> list) {
+        instructions = list;
+    }
 }