comparison graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/calc/NormalizeCompareNode.java @ 14906:f3a5036cc13c

javadoc fixes javadoc has become stricter in jdk8
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 31 Mar 2014 20:51:09 +0200
parents 34c07ef28bc9
children 882f4cb7cfcf
comparison
equal deleted inserted replaced
14905:b7afc71535d3 14906:f3a5036cc13c
26 import com.oracle.graal.nodes.*; 26 import com.oracle.graal.nodes.*;
27 import com.oracle.graal.nodes.spi.*; 27 import com.oracle.graal.nodes.spi.*;
28 import com.oracle.graal.nodes.type.*; 28 import com.oracle.graal.nodes.type.*;
29 29
30 /** 30 /**
31 * Returns -1, 0, or 1 if either x < y, x == y, or x > y. If the comparison is undecided (one of the 31 * Returns -1, 0, or 1 if either x &lt; y, x == y, or x &gt; y. If the comparison is undecided (one
32 * inputs is NaN), the result is 1 if isUnorderedLess is false and -1 if isUnorderedLess is true. 32 * of the inputs is NaN), the result is 1 if isUnorderedLess is false and -1 if isUnorderedLess is
33 * true.
33 */ 34 */
34 public final class NormalizeCompareNode extends BinaryNode implements Lowerable { 35 public final class NormalizeCompareNode extends BinaryNode implements Lowerable {
35 36
36 public final boolean isUnorderedLess; 37 public final boolean isUnorderedLess;
37 38
38 /** 39 /**
39 * Creates a new compare operation. 40 * Creates a new compare operation.
40 * 41 *
41 * @param x the first input 42 * @param x the first input
42 * @param y the second input 43 * @param y the second input
43 * @param isUnorderedLess true when an unordered floating point comparison is interpreted as 44 * @param isUnorderedLess true when an unordered floating point comparison is interpreted as
44 * less, false when greater. 45 * less, false when greater.
45 */ 46 */