diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2003-07-11 23:49:43 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2003-07-11 23:49:43 +0000 |
commit | 80fa0b4c1b0641601832b990d1e459cef3973236 (patch) | |
tree | fc41ccf9c4b66bad28c1edf83f259bd67057e7e0 /gcc | |
parent | 1ea6f4c805b66e077c126f232e9887c4147b7d1c (diff) | |
download | gcc-80fa0b4c1b0641601832b990d1e459cef3973236.zip gcc-80fa0b4c1b0641601832b990d1e459cef3973236.tar.gz gcc-80fa0b4c1b0641601832b990d1e459cef3973236.tar.bz2 |
* rtl.def (NOTE): Do not use padding.
From-SVN: r69257
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/rtl.def | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6f0a49a..f7423fc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-07-11 Dan Nicolaescu <dann@ics.uci.edu> + + * rtl.def (NOTE): Do not use padding. + 2003-07-11 Dara Hazeghi <dhazeghi@yahoo.com> * doc/install.tex: Update required binutils for i?86-*-linux* diff --git a/gcc/rtl.def b/gcc/rtl.def index 54b6940..3f5bcef 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -631,10 +631,8 @@ DEF_RTL_EXPR(CODE_LABEL, "code_label", "iuuB00is", 'x') 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. - 8-9: padding so that notes and insns are the same size, and thus - allocated from the same page ordering. */ -DEF_RTL_EXPR(NOTE, "note", "iuuB0ni00", 'x') + 7: unique number if line number == note_insn_deleted_label. */ +DEF_RTL_EXPR(NOTE, "note", "iuuB0ni", 'x') /* ---------------------------------------------------------------------- Top level constituents of INSN, JUMP_INSN and CALL_INSN. |