src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/ControlSplitNode.java
changeset 48861 47f19ff9903c
parent 47216 71c04702a3d5
child 50858 2d3e99a72541
equal deleted inserted replaced
48860:5bce1b7e7800 48861:47f19ff9903c
    47      */
    47      */
    48     public abstract boolean setProbability(AbstractBeginNode successor, double value);
    48     public abstract boolean setProbability(AbstractBeginNode successor, double value);
    49 
    49 
    50     /**
    50     /**
    51      * Primary successor of the control split. Data dependencies on the node have to be scheduled in
    51      * Primary successor of the control split. Data dependencies on the node have to be scheduled in
    52      * the primary successor.
    52      * the primary successor. Returns null if data dependencies are not expected.
    53      *
    53      *
    54      * @return the primary successor
    54      * @return the primary successor
    55      */
    55      */
    56     public abstract AbstractBeginNode getPrimarySuccessor();
    56     public abstract AbstractBeginNode getPrimarySuccessor();
    57 
    57