summaryrefslogtreecommitdiff
path: root/gcc/rtl.def
diff options
context:
space:
mode:
authordmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2016-04-27 17:54:42 +0000
committerdmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2016-04-27 17:54:42 +0000
commit7bc6778100ef03c9a94d6d22d90f24eb070f3687 (patch)
tree32e63cd9a38b67386346a0de816acec08a99d017 /gcc/rtl.def
parent573e25da2234cc3fb39a85139a77cad11a1fe87c (diff)
downloadgcc-7bc6778100ef03c9a94d6d22d90f24eb070f3687.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@235520 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.def')
-rw-r--r--gcc/rtl.def4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/rtl.def b/gcc/rtl.def
index 0b7f894e0d7..45a9272656e 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[].
---------------------------------------------------------------------- */