aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>2005-01-16 15:28:18 +0000
committerJohn David Anglin <danglin@gcc.gnu.org>2005-01-16 15:28:18 +0000
commit083b6717421551de719da50c1457e63e4fa4bbd9 (patch)
tree1c91cbe9f2de1c17161aeacff28875b71fb4cf00 /gcc/tree.h
parent5352b89f604b3be2f9e7d33e748e82391d49cf90 (diff)
downloadgcc-083b6717421551de719da50c1457e63e4fa4bbd9.zip
gcc-083b6717421551de719da50c1457e63e4fa4bbd9.tar.gz
gcc-083b6717421551de719da50c1457e63e4fa4bbd9.tar.bz2
re PR target/16304 (bootstrap failure on AIX 4.3.3: cannot build strstream in libstdc++)
PR target/16304 * defaults.h (TARGET_DEFERRED_OUTPUT_DEFS): Provide default. * toplev.c (compile_file): Call process_pending_assemble_output_defs just before targetm.asm_out.file_end. * tree.h (process_pending_assemble_output_defs): Declare. * varasm.c (assemble_output_def, process_pending_assemble_output_defs): New functions. (assemble_alias): Defer generation of assembly code for defines when TARGET_DEFERRED_OUTPUT_DEFS is true. * config/rs6000/aix41.h (TARGET_DEFERRED_OUTPUT_DEFS): Define. * config/rs6000/aix43.h (TARGET_DEFERRED_OUTPUT_DEFS): Define. * doc/tm.texi (TARGET_DEFERRED_OUTPUT_DEFS): document. From-SVN: r93726
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index f3410c6..4fdff0c 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -3703,6 +3703,7 @@ extern void mark_decl_referenced (tree);
extern void notice_global_symbol (tree);
extern void set_user_assembler_name (tree, const char *);
extern void process_pending_assemble_externals (void);
+extern void process_pending_assemble_output_defs (void);
/* In stmt.c */
extern void expand_computed_goto (tree);