diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2007-07-05 19:55:07 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2007-07-05 19:55:07 +0200 |
commit | 28cc8a5028826db2833e0120ff6573577c38461b (patch) | |
tree | 108a71e972ed9ea5c80058a08ad9fc5ee4c91e0d /gcc/rtl.def | |
parent | 12a27363b0214be894674f2cd4b667e70b060325 (diff) | |
download | gcc-28cc8a5028826db2833e0120ff6573577c38461b.tar.gz |
rtl.def (NOTE): Change print format string to print operand 5 as a note insn name.
* rtl.def (NOTE): Change print format string to print
operand 5 as a note insn name.
From-SVN: r126374
Diffstat (limited to 'gcc/rtl.def')
-rw-r--r-- | gcc/rtl.def | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/rtl.def b/gcc/rtl.def index 3fb68ec67e9..c82fa7e86ed 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -140,9 +140,9 @@ DEF_RTL_EXPR(CODE_LABEL, "code_label", "iuuB00is", RTX_EXTRA) /* Say where in the code a source line starts, for symbol table's sake. Operand: 4: note-specific data - 5: unused (memory layout has to match code_label above) - 6: unique number if line number == note_insn_deleted_label. */ -DEF_RTL_EXPR(NOTE, "note", "iuuB00i", RTX_EXTRA) + 5: enum insn_note + 6: unique number if insn_note == note_insn_deleted_label. */ +DEF_RTL_EXPR(NOTE, "note", "iuuB0ni", RTX_EXTRA) /* ---------------------------------------------------------------------- Top level constituents of INSN, JUMP_INSN and CALL_INSN. |