]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix comment in rtl.def
authorDavid Malcolm <dmalcolm@redhat.com>
Wed, 27 Apr 2016 17:54:42 +0000 (17:54 +0000)
committerDavid Malcolm <dmalcolm@gcc.gnu.org>
Wed, 27 Apr 2016 17:54:42 +0000 (17:54 +0000)
Commit r210360 removed the first "i" field from the various instruction
nodes in rtx.def, moving it to an explicit "int insn_uid;" field
of the union "u2" within rtx_def.

Update the comment in rtl.def to reflect this change.  Also, fix
a stray apostrophe.

gcc/ChangeLog:
* rtl.def: Update comment for "things in the instruction chain" to
reflect the removal of the leading "i" field for INSN_UID in
r210360.  Fix bogus apostrophe.

From-SVN: r235520

gcc/ChangeLog
gcc/rtl.def

index 68164c0542c4fe302f9747df5200f34df14c4719..7ea42e845c324202a0a745aed883e1e23973a10c 100644 (file)
@@ -1,3 +1,9 @@
+2016-04-27  David Malcolm  <dmalcolm@redhat.com>
+
+       * rtl.def: Update comment for "things in the instruction chain" to
+       reflect the removal of the leading "i" field for INSN_UID in
+       r210360.  Fix bogus apostrophe.
+
 2016-04-27  Uros Bizjak  <ubizjak@gmail.com>
 
        * config/i386/i386.md
index 0b7f894e0d7920f6bef6932ffda66b84b1b986d5..45a9272656ebeaaa091380d0233f28545895bf33 100644 (file)
@@ -131,10 +131,10 @@ DEF_RTL_EXPR(ADDRESS, "address", "i", RTX_EXTRA)
 /* ----------------------------------------------------------------------
    Expression types used for things in the instruction chain.
 
-   All formats must start with "iuu" to handle the chain.
+   All formats must start with "uu" to handle the chain.
    Each insn expression holds an rtl instruction and its semantics
    during back-end processing.
-   See macros's in "rtl.h" for the meaning of each rtx->u.fld[].
+   See macros in "rtl.h" for the meaning of each rtx->u.fld[].
 
    ---------------------------------------------------------------------- */