comparison 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
comparison
equal deleted inserted replaced
2776:398b8fa5dc81 2777:3e4d992fd312
217 } 217 }
218 } 218 }
219 successors.clear(); 219 successors.clear();
220 predecessors.clear(); 220 predecessors.clear();
221 } 221 }
222
223 public void setInstructions(List<Instruction> list) {
224 instructions = list;
225 }
222 } 226 }