This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[obvious patch] Fix comment for CONST_DOUBLE
- From: Josef Zlomek <zlomj9am at artax dot karlin dot mff dot cuni dot cz>
- To: gcc-patches at gcc dot gnu dot org
- Date: Sun, 1 Jun 2003 16:39:29 +0200
- Subject: [obvious patch] Fix comment for CONST_DOUBLE
Hi,
I have noticed that comment for CONST_DOUBLE is outdated
on mainline and 3.3 branch,
this patch updates it.
I have commited it to mainline and 3.3 branch as obvious.
Josef
2003-06-01 Josef Zlomek <zlomekj@suse.cz>
* rtl.def (CONST_DOUBLE): Update comment.
Index: rtl.def
===================================================================
RCS file: /cvs/gcc/gcc/gcc/rtl.def,v
retrieving revision 1.68
diff -c -3 -p -r1.68 rtl.def
*** rtl.def 27 Apr 2003 18:57:50 -0000 1.68
--- rtl.def 1 Jun 2003 14:35:15 -0000
*************** DEF_RTL_EXPR(RESX, "resx", "i", 'x')
*** 779,788 ****
DEF_RTL_EXPR(CONST_INT, "const_int", "w", 'o')
/* numeric floating point constant.
! Operand 0 ('0') is a chain of all CONST_DOUBLEs in use in the
! current function.
! Remaining operands hold the actual value. They are all 'w' and
! there may be from 1 to 4; see rtl.c. */
DEF_RTL_EXPR(CONST_DOUBLE, "const_double", CONST_DOUBLE_FORMAT, 'o')
/* Describes a vector constant. */
--- 779,786 ----
DEF_RTL_EXPR(CONST_INT, "const_int", "w", 'o')
/* numeric floating point constant.
! Operands hold the value. They are all 'w' and there may be from 2 to 6;
! see real.h. */
DEF_RTL_EXPR(CONST_DOUBLE, "const_double", CONST_DOUBLE_FORMAT, 'o')
/* Describes a vector constant. */