# HG changeset patch # User Erik Eckstein # Date 1395825966 -3600 # Node ID c59eaa8d66321d5673e21a356689ffa1cbbffd16 # Parent 56721cd3f8ba5a6eb72a78d2b5a977258d640f0d fix ecliipseformat error diff -r 56721cd3f8ba -r c59eaa8d6632 graal/com.oracle.graal.phases/src/com/oracle/graal/phases/util/GraphOrder.java --- a/graal/com.oracle.graal.phases/src/com/oracle/graal/phases/util/GraphOrder.java Wed Mar 26 10:16:28 2014 +0100 +++ b/graal/com.oracle.graal.phases/src/com/oracle/graal/phases/util/GraphOrder.java Wed Mar 26 10:26:06 2014 +0100 @@ -60,10 +60,13 @@ if (input instanceof FrameState && node instanceof StateSplit && input == ((StateSplit) node).stateAfter()) { // nothing to do - after frame states are known, allowed cycles } else { - // TODO assertion does not hold for Substrate VM (in general for all -// notDataflow inputs) - // assert false : "unexpected cycle detected at input " + node + " -> " -// + input; + /* + * TODO assertion does not hold for Substrate VM (in general for all + * notDataflow inputs) + * + * assert false : "unexpected cycle detected at input " + node + " -> " + * + input; + */ } } }