diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2009-06-02 08:09:27 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2009-06-02 08:09:27 +0000 |
commit | 1bcca2c5e6a6e5a0de76b1d379c6fbec21abb20e (patch) | |
tree | c648c271b7f3fec23e9453029866623ce4f547ee | |
parent | 8588f7979f078d74b05973f55136b3769e3aca73 (diff) | |
download | gcc-1bcca2c5e6a6e5a0de76b1d379c6fbec21abb20e.zip gcc-1bcca2c5e6a6e5a0de76b1d379c6fbec21abb20e.tar.gz gcc-1bcca2c5e6a6e5a0de76b1d379c6fbec21abb20e.tar.bz2 |
gengtype.c (adjust_field_rtx_def): Add NOTE_INSN_DELETED_LABEL's label string.
* gengtype.c (adjust_field_rtx_def): Add NOTE_INSN_DELETED_LABEL's
label string.
From-SVN: r148077
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/gengtype.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9bdc1d2..a58b9f1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2009-06-02 Alexandre Oliva <aoliva@redhat.com> + * gengtype.c (adjust_field_rtx_def): Add NOTE_INSN_DELETED_LABEL's + label string. + +2009-06-02 Alexandre Oliva <aoliva@redhat.com> + * df-core.c (df_ref_debug): Honor -fdump-noaddr. 2009-06-02 Alexandre Oliva <aoliva@redhat.com> diff --git a/gcc/gengtype.c b/gcc/gengtype.c index 02923a9..c7d59fd 100644 --- a/gcc/gengtype.c +++ b/gcc/gengtype.c @@ -1016,6 +1016,7 @@ adjust_field_rtx_def (type_p t, options_p ARG_UNUSED (opt)) switch (c) { case NOTE_INSN_MAX: + case NOTE_INSN_DELETED_LABEL: note_flds = create_field (note_flds, &string_type, "rt_str"); break; |