diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1998-06-08 17:52:39 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-06-08 17:52:39 +0000 |
commit | bcb807294777294109ee3c653f8ee5ab515a25f4 (patch) | |
tree | c81997c63f7cc2ac23e02cecea61ea4ea83b9624 /gcc/cp/Makefile.in | |
parent | cb92366029011ef6ee679a2540a2c6a77ad7372e (diff) | |
download | gcc-bcb807294777294109ee3c653f8ee5ab515a25f4.zip gcc-bcb807294777294109ee3c653f8ee5ab515a25f4.tar.gz gcc-bcb807294777294109ee3c653f8ee5ab515a25f4.tar.bz2 |
Warning fixes:
* Makefile.in (decl2.o): Depend on dwarf2out.h and dwarfout.h.
* cp-tree.h: Add prototype for `maybe_print_template_context' and
`maybe_make_one_only'.
* decl.c (auto_function): Remove unused variable `decl'.
* decl2.c: Include dwarf2out.h and dwarfout.h.
* lex.c: Remove redundant declarations of `set_float_handler' and
`asm_out_file'.
From-SVN: r20349
Diffstat (limited to 'gcc/cp/Makefile.in')
-rw-r--r-- | gcc/cp/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/Makefile.in b/gcc/cp/Makefile.in index 8d816b0..4b44500 100644 --- a/gcc/cp/Makefile.in +++ b/gcc/cp/Makefile.in @@ -250,7 +250,7 @@ decl.o : decl.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h \ decl2.o : decl2.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h \ lex.h decl.h $(srcdir)/../expr.h ../insn-codes.h $(srcdir)/../except.h \ $(srcdir)/../output.h $(srcdir)/../except.h $(srcdir)/../system.h \ - $(srcdir)/../toplev.h + $(srcdir)/../toplev.h $(srcdir)/../dwarf2out.h $(srcdir)/../dwarfout.h typeck2.o : typeck2.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h \ $(srcdir)/../system.h $(srcdir)/../toplev.h typeck.o : typeck.c $(CONFIG_H) $(CXX_TREE_H) $(srcdir)/../flags.h $(RTL_H) \ |