diff options
author | Jakub Jelinek <jakub@redhat.com> | 2010-06-14 14:30:29 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2010-06-14 14:30:29 +0200 |
commit | 5bca794b0df69689d0bcc6d03697f169e543dd2c (patch) | |
tree | e71b7a923da3e97aad52cfbe029d629009a66b0a /gcc/c-config-lang.in | |
parent | 689cb4acaa076bc1e537298fe71c00102e58e782 (diff) | |
download | gcc-5bca794b0df69689d0bcc6d03697f169e543dd2c.zip gcc-5bca794b0df69689d0bcc6d03697f169e543dd2c.tar.gz gcc-5bca794b0df69689d0bcc6d03697f169e543dd2c.tar.bz2 |
re PR bootstrap/44509 (Revision 160626 breaks bootstrap on *-apple-darwin*)
PR bootstrap/44509
* c-config-lang.in (gtfiles): Add c-family/c-cppbuiltin.c.
* c-family/c-cppbuiltin.c: Include gt-c-family-c-cppbuiltin.h.
(lazy_hex_fp_values, lazy_hex_fp_value_count): Add GTY(()) markers.
(lazy_hex_fp_value, builtin_define_with_hex_fp_value): Use
ggc_strdup instead of xstrdup.
* gcc.dg/pr44509.c: New test.
From-SVN: r160729
Diffstat (limited to 'gcc/c-config-lang.in')
-rw-r--r-- | gcc/c-config-lang.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-config-lang.in b/gcc/c-config-lang.in index 2565186..d913803 100644 --- a/gcc/c-config-lang.in +++ b/gcc/c-config-lang.in @@ -22,4 +22,4 @@ # files used by C that have garbage collection GTY macros in them # which therefore need to be scanned by gengtype.c. -gtfiles="\$(srcdir)/c-lang.c \$(srcdir)/c-tree.h \$(srcdir)/c-decl.c \$(srcdir)/c-family/c-common.c \$(srcdir)/c-family/c-common.h \$(srcdir)/c-family/c-pragma.h \$(srcdir)/c-family/c-pragma.c \$(srcdir)/c-objc-common.c \$(srcdir)/c-parser.c \$(srcdir)/c-lang.h" +gtfiles="\$(srcdir)/c-lang.c \$(srcdir)/c-tree.h \$(srcdir)/c-decl.c \$(srcdir)/c-family/c-common.c \$(srcdir)/c-family/c-common.h \$(srcdir)/c-family/c-cppbuiltin.c \$(srcdir)/c-family/c-pragma.h \$(srcdir)/c-family/c-pragma.c \$(srcdir)/c-objc-common.c \$(srcdir)/c-parser.c \$(srcdir)/c-lang.h" |