Commit a7eaa37d by James E Wilson Committed by Jim Wilson

Fix comment problem reported by Doug Evans.

	* rtl.def (CODE_LABEL, NOTE): Correct operand numbers in comments.

From-SVN: r74488
parent facef326
2003-12-09 James E Wilson <wilson@specifixinc.com>
* rtl.def (CODE_LABEL, NOTE): Correct operand numbers in comments.
2003-12-09 Matt Austern <austern@apple.com> 2003-12-09 Matt Austern <austern@apple.com>
PR c/13134 PR c/13134
......
...@@ -625,17 +625,17 @@ DEF_RTL_EXPR(BARRIER, "barrier", "iuu000000", 'x') ...@@ -625,17 +625,17 @@ DEF_RTL_EXPR(BARRIER, "barrier", "iuu000000", 'x')
/* Holds a label that is followed by instructions. /* Holds a label that is followed by instructions.
Operand: Operand:
5: is used in jump.c for the use-count of the label. 4: 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. 5: 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. 6: is a number that is unique in the entire compilation.
8: is the user-given name of the label, if any. */ 7: is the user-given name of the label, if any. */
DEF_RTL_EXPR(CODE_LABEL, "code_label", "iuuB00is", 'x') DEF_RTL_EXPR(CODE_LABEL, "code_label", "iuuB00is", 'x')
/* Say where in the code a source line starts, for symbol table's sake. /* Say where in the code a source line starts, for symbol table's sake.
Operand: Operand:
5: filename, if line number > 0, note-specific data otherwise. 4: filename, if line number > 0, note-specific data otherwise.
6: line number if > 0, enum note_insn otherwise. 5: line number if > 0, enum note_insn otherwise.
7: unique number if line number == note_insn_deleted_label. */ 6: unique number if line number == note_insn_deleted_label. */
DEF_RTL_EXPR(NOTE, "note", "iuuB0ni", 'x') DEF_RTL_EXPR(NOTE, "note", "iuuB0ni", 'x')
/* ---------------------------------------------------------------------- /* ----------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment