summaryrefslogtreecommitdiff
path: root/gcc/rtl.def
diff options
context:
space:
mode:
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>2003-12-10 07:35:47 +0000
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>2003-12-10 07:35:47 +0000
commit15f8a762196d59c17af70665f250c605c0e61350 (patch)
treed8005f5ec87ce3a1b675df23febc0cd133c58b8a /gcc/rtl.def
parent503333487efc28f86117110f890daaafebd1eb72 (diff)
downloadgcc-15f8a762196d59c17af70665f250c605c0e61350.tar.gz
Fix comment problem reported by Doug Evans.
* rtl.def (CODE_LABEL, NOTE): Correct operand numbers in comments. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74488 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/rtl.def')
-rw-r--r--gcc/rtl.def14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/rtl.def b/gcc/rtl.def
index 60c3f6bebd0..f97f8e98c8a 100644
--- a/gcc/rtl.def
+++ b/gcc/rtl.def
@@ -625,17 +625,17 @@ DEF_RTL_EXPR(BARRIER, "barrier", "iuu000000", 'x')
/* Holds a label that is followed by instructions.
Operand:
- 5: is used in jump.c for the use-count of the label.
- 6: is used in flow.c to point to the chain of label_ref's to this label.
- 7: is a number that is unique in the entire compilation.
- 8: is the user-given name of the label, if any. */
+ 4: is used in jump.c for the use-count of the label.
+ 5: is used in flow.c to point to the chain of label_ref's to this label.
+ 6: is a number that is unique in the entire compilation.
+ 7: is the user-given name of the label, if any. */
DEF_RTL_EXPR(CODE_LABEL, "code_label", "iuuB00is", 'x')
/* Say where in the code a source line starts, for symbol table's sake.
Operand:
- 5: filename, if line number > 0, note-specific data otherwise.
- 6: line number if > 0, enum note_insn otherwise.
- 7: unique number if line number == note_insn_deleted_label. */
+ 4: filename, if line number > 0, note-specific data otherwise.
+ 5: line number if > 0, enum note_insn otherwise.
+ 6: unique number if line number == note_insn_deleted_label. */
DEF_RTL_EXPR(NOTE, "note", "iuuB0ni", 'x')
/* ----------------------------------------------------------------------