comparison graal/GraalCompiler/src/com/sun/c1x/ir/BlockEnd.java @ 2581:4a36a0bd6d18

added GraalGraph to classpath, Node as superclass of Value
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 05 May 2011 13:27:48 +0200
parents e1b3db8031ee
children 0c6564c254af
comparison
equal deleted inserted replaced
2579:4984c8ebd6c7 2581:4a36a0bd6d18
132 132
133 /** 133 /**
134 * Gets this block end's list of successors. 134 * Gets this block end's list of successors.
135 * @return the successor list 135 * @return the successor list
136 */ 136 */
137 public List<BlockBegin> successors() { 137 public List<BlockBegin> blockSuccessors() {
138 return successors; 138 return successors;
139 } 139 }
140 140
141 /** 141 /**
142 * Gets the successor at a specified index. 142 * Gets the successor at a specified index.