From: David S. Miller Date: Sat, 23 Apr 2005 05:25:26 +0000 (+0000) Subject: rtl.h (CONST_DOUBLE): Fix comment, a CONST_DOUBLE holds an integer when it's mode... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6a47d88fadbbf04e05f6373c368b94e233261e9e;p=gcc.git rtl.h (CONST_DOUBLE): Fix comment, a CONST_DOUBLE holds an integer when it's mode is VOIDmode not DImode. * rtl.h (CONST_DOUBLE): Fix comment, a CONST_DOUBLE holds an integer when it's mode is VOIDmode not DImode. From-SVN: r98603 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 37f9d497f72..dd76c28b21a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2005-04-22 David S. Miller + + * 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 * config/rs6000/rs6000.md (sync_add_internal, diff --git a/gcc/rtl.h b/gcc/rtl.h index bbbc6cac572..c613cba6916 100644 --- 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. */