diff options
author | David Malcolm <dmalcolm@redhat.com> | 2016-04-27 17:54:42 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2016-04-27 17:54:42 +0000 |
commit | e306693a820abb242c4ccfce28bbd0f9cec7bda9 (patch) | |
tree | 32e63cd9a38b67386346a0de816acec08a99d017 | |
parent | 3d2795a030d9d0e31fc0834448cf0aad7c8c3536 (diff) | |
download | gcc-e306693a820abb242c4ccfce28bbd0f9cec7bda9.zip gcc-e306693a820abb242c4ccfce28bbd0f9cec7bda9.tar.gz gcc-e306693a820abb242c4ccfce28bbd0f9cec7bda9.tar.bz2 |
Fix comment in rtl.def
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
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/rtl.def | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 68164c0..7ea42e8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/rtl.def b/gcc/rtl.def index 0b7f894..45a9272 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -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[]. ---------------------------------------------------------------------- */ |