comparison graal/com.oracle.graal.phases/src/com/oracle/graal/phases/graph/ScheduledNodeIterator.java @ 19507:1cde96b96673

Fixed code format issues.
author Roland Schatz <roland.schatz@oracle.com>
date Thu, 19 Feb 2015 16:15:56 +0100
parents c943ba97b2a7
children 6b73ce815fc2
comparison
equal deleted inserted replaced
19506:8c7536965c95 19507:1cde96b96673
30 import com.oracle.graal.phases.schedule.*; 30 import com.oracle.graal.phases.schedule.*;
31 31
32 /** 32 /**
33 * Iterates over a list of nodes, which usually comes from 33 * Iterates over a list of nodes, which usually comes from
34 * {@link SchedulePhase#getBlockToNodesMap()}. 34 * {@link SchedulePhase#getBlockToNodesMap()}.
35 * 35 *
36 * While iterating, it is possible to {@link #insert(FixedNode, FixedWithNextNode) insert} and 36 * While iterating, it is possible to {@link #insert(FixedNode, FixedWithNextNode) insert} and
37 * {@link #replaceCurrent(FixedWithNextNode) replace} nodes. 37 * {@link #replaceCurrent(FixedWithNextNode) replace} nodes.
38 */ 38 */
39 public abstract class ScheduledNodeIterator { 39 public abstract class ScheduledNodeIterator {
40 40