diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2006-04-11 01:36:50 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2006-04-11 01:36:50 +0000 |
commit | 33c9159e09fb29cd6c47e076c6a2006a544884a9 (patch) | |
tree | 7d93c2f41a91db2797e82ea2593a73f5c5b9cda7 /gcc/Makefile.in | |
parent | ab9260ac48d4f7dad156eae570df7ab4f826af7c (diff) | |
download | gcc-33c9159e09fb29cd6c47e076c6a2006a544884a9.zip gcc-33c9159e09fb29cd6c47e076c6a2006a544884a9.tar.gz gcc-33c9159e09fb29cd6c47e076c6a2006a544884a9.tar.bz2 |
20060410.c: New.
PR/21391
* testsuite/gcc.dg/20060410.c: New.
* dwarf2out.c (struct die_struct): Add die_perennial_p field.
(premark_used_types_helper): New.
(premark_used_types): New.
(gen_subprogram_die): Call premark_used_types.
(prune_unused_types_walk): Do not prune perennial dies.
* function.c (used_types_insert): New.
* function.h (struct function): Add used_types_hash field.
(used_types_insert): Add prototype.
* Makefile.in (FUNCTION_H): Depend on HASHTAB_H.
* c-parser.c (c_parser_cast_expression): Save casted types in used
types hash table.
From-SVN: r112845
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 25559e4..d29fcaa 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -751,7 +751,7 @@ RECOG_H = recog.h ALIAS_H = alias.h EMIT_RTL_H = emit-rtl.h FLAGS_H = flags.h options.h -FUNCTION_H = function.h $(TREE_H) +FUNCTION_H = function.h $(TREE_H) $(HASHTAB_H) EXPR_H = expr.h insn-config.h $(FUNCTION_H) $(RTL_H) $(FLAGS_H) $(TREE_H) $(MACHMODE_H) $(EMIT_RTL_H) OPTABS_H = optabs.h insn-codes.h REGS_H = regs.h varray.h $(MACHMODE_H) $(OBSTACK_H) $(BASIC_BLOCK_H) $(FUNCTION_H) |