rtl.h (CONST_DOUBLE): Fix comment, a CONST_DOUBLE holds an integer when it's mode...
authorDavid S. Miller <davem@davemloft.net>
Sat, 23 Apr 2005 05:25:26 +0000 (05:25 +0000)
committerDavid S. Miller <davem@gcc.gnu.org>
Sat, 23 Apr 2005 05:25:26 +0000 (22:25 -0700)
* rtl.h (CONST_DOUBLE): Fix comment, a CONST_DOUBLE holds an
integer when it's mode is VOIDmode not DImode.

From-SVN: r98603

gcc/ChangeLog
gcc/rtl.h

index 37f9d497f72552dba164f00a6c0eb5c1e85bfeb0..dd76c28b21a538aab06aa640efe122b8d7d80ef7 100644 (file)
@@ -1,3 +1,8 @@
+2005-04-22  David S. Miller  <davem@davemloft.net>
+
+       * rtl.h (CONST_DOUBLE): Fix comment, a CONST_DOUBLE holds an
+       integer when it's mode is VOIDmode not DImode.
+
 2005-04-22  Geoffrey Keating  <geoffk@apple.com>
 
        * config/rs6000/rs6000.md (sync_add<mode>_internal,
index bbbc6cac57298de954931718de45494230a1e5e0..c613cba6916938f56a7d52efc2bc0d9bb472273b 100644 (file)
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -915,7 +915,7 @@ enum label_kind
 #define INTVAL(RTX) XCWINT(RTX, 0, CONST_INT)
 
 /* For a CONST_DOUBLE:
-   For a DImode, there are two integers CONST_DOUBLE_LOW is the
+   For a VOIDmode, there are two integers CONST_DOUBLE_LOW is the
      low-order word and ..._HIGH the high-order.
    For a float, there is a REAL_VALUE_TYPE structure, and
      CONST_DOUBLE_REAL_VALUE(r) is a pointer to it.  */