diff options
author | David S. Miller <davem@davemloft.net> | 2005-04-23 05:25:26 +0000 |
---|---|---|
committer | David S. Miller <davem@gcc.gnu.org> | 2005-04-22 22:25:26 -0700 |
commit | 6a47d88fadbbf04e05f6373c368b94e233261e9e (patch) | |
tree | 4cbf18ede950716c7f990b98ee1775e2f483d2e6 /gcc/rtl.h | |
parent | 8635a919278f7e46e3c884a371400ee5d7710127 (diff) | |
download | gcc-6a47d88fadbbf04e05f6373c368b94e233261e9e.zip gcc-6a47d88fadbbf04e05f6373c368b94e233261e9e.tar.gz gcc-6a47d88fadbbf04e05f6373c368b94e233261e9e.tar.bz2 |
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
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. */ |