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. Successfully bootstrapped & regrtested on x86_64-pc-linux-gnu OK for trunk? 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. --- gcc/rtl.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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[]. ---------------------------------------------------------------------- */ -- 1.8.5.3