diff 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
line wrap: on
line diff
--- a/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/calc/NormalizeCompareNode.java	Mon Mar 31 19:07:49 2014 +0200
+++ b/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/calc/NormalizeCompareNode.java	Mon Mar 31 20:51:09 2014 +0200
@@ -28,8 +28,9 @@
 import com.oracle.graal.nodes.type.*;
 
 /**
- * Returns -1, 0, or 1 if either x < y, x == y, or x > y. If the comparison is undecided (one of the
- * inputs is NaN), the result is 1 if isUnorderedLess is false and -1 if isUnorderedLess is true.
+ * Returns -1, 0, or 1 if either x &lt; y, x == y, or x &gt; y. If the comparison is undecided (one
+ * of the inputs is NaN), the result is 1 if isUnorderedLess is false and -1 if isUnorderedLess is
+ * true.
  */
 public final class NormalizeCompareNode extends BinaryNode implements Lowerable {
 
@@ -37,7 +38,7 @@
 
     /**
      * Creates a new compare operation.
-     * 
+     *
      * @param x the first input
      * @param y the second input
      * @param isUnorderedLess true when an unordered floating point comparison is interpreted as