* tree.c (host_integerp, tree_low_cst): Correct function comment.
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>
Wed, 7 Sep 2005 12:39:03 +0000 (12:39 +0000)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 7 Sep 2005 12:39:03 +0000 (08:39 -0400)
From-SVN: r103989

gcc/ChangeLog
gcc/tree.c

index dd30a6c04278cfccec73ae9817598f757e850d18..d2c6693e6a8f9b5d00e17199d05b4c72f63e9634 100644 (file)
@@ -1,3 +1,7 @@
+2005-09-08  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
+
+       * tree.c (host_integerp, tree_low_cst): Correct function comment.
+
 2005-09-08  Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
 
        PR target/23747
index 124ef5a5d3d7b58fa9f6689b655c4ed26628cd83..a7eeeae8c9b56af57cd3b391be428056d5ce1ca1 100644 (file)
@@ -4244,7 +4244,7 @@ tree_int_cst_compare (tree t1, tree t2)
 
 /* Return 1 if T is an INTEGER_CST that can be manipulated efficiently on
    the host.  If POS is zero, the value can be represented in a single
-   HOST_WIDE_INT.  If POS is nonzero, the value must be positive and can
+   HOST_WIDE_INT.  If POS is nonzero, the value must be non-negative and can
    be represented in a single unsigned HOST_WIDE_INT.  */
 
 int
@@ -4262,7 +4262,7 @@ host_integerp (tree t, int pos)
 
 /* Return the HOST_WIDE_INT least significant bits of T if it is an
    INTEGER_CST and there is no overflow.  POS is nonzero if the result must
-   be positive.  We must be able to satisfy the above conditions.  */
+   be non-negative.  We must be able to satisfy the above conditions.  */
 
 HOST_WIDE_INT
 tree_low_cst (tree t, int pos)