diff options
author | Geoffrey Keating <geoffk@apple.com> | 2005-06-16 22:12:24 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2005-06-16 22:12:24 +0000 |
commit | 0518582d92b902d750f0e9d0aeaf0f4d40b5454c (patch) | |
tree | 6ff95daa183065e3e5b1a65188caae2f59a2b18d | |
parent | 5b7daccee701ed701ec5bd33b49926b4aae8d857 (diff) | |
download | gcc-0518582d92b902d750f0e9d0aeaf0f4d40b5454c.zip gcc-0518582d92b902d750f0e9d0aeaf0f4d40b5454c.tar.gz gcc-0518582d92b902d750f0e9d0aeaf0f4d40b5454c.tar.bz2 |
gengtype.c (adjust_field_rtx_def): Don't add a skip to basic_block types.
* gengtype.c (adjust_field_rtx_def): Don't add a skip to
basic_block types.
From-SVN: r101099
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/gengtype.c | 8 |
2 files changed, 3 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7091f2b..3d1a5a7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2005-06-16 Geoffrey Keating <geoffk@apple.com> + * gengtype.c (adjust_field_rtx_def): Don't add a skip to + basic_block types. + * config/t-slibgcc-darwin (SHLIB_SOVERSION): Rename from SHLIB_MINOR. (SHLIB_REVISION): Delete. diff --git a/gcc/gengtype.c b/gcc/gengtype.c index 519ff72..a52806d 100644 --- a/gcc/gengtype.c +++ b/gcc/gengtype.c @@ -628,14 +628,6 @@ adjust_field_rtx_def (type_p t, options_p ARG_UNUSED (opt)) subfields->opt->name = "desc"; subfields->opt->info = "NOTE_LINE_NUMBER (&%0)"; } - else if (t == basic_block_tp) - { - /* We don't presently GC basic block structures... */ - subfields->opt = XNEW (struct options); - subfields->opt->next = nodot; - subfields->opt->name = "skip"; - subfields->opt->info = NULL; - } else subfields->opt = nodot; } |