Wed May 6 22:32:37 CDT 1998 Robert Lipe <robertl@dgii.com>

* Makefile.in (dwarfout.o) Add toplev.h dependency.
       * dwarfout.c, i386.c: Include toplev.h
       * toplev.h: (pfatal_with_name) Add prototype.

From-SVN: r19600
This commit is contained in:
Robert Lipe 1998-05-06 20:53:58 +00:00 committed by Robert Lipe
parent cc64424082
commit f103890ba5
5 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,10 @@
Wed May 6 22:32:37 CDT 1998 Robert Lipe <robertl@dgii.com>
* Makefile.in (dwarfout.o) Add toplev.h dependency.
* dwarfout.c, i386.c: Include toplev.h
* toplev.h: (pfatal_with_name) Add prototype.
Wed May 6 19:02:29 1998 Jason Merrill <jason@yorick.cygnus.com>
* Makefile.in: Fix .SUFFIXES.

View File

@ -1367,7 +1367,7 @@ sdbout.o : sdbout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h except.h \
function.h expr.h output.h hard-reg-set.h regs.h defaults.h real.h \
insn-config.h obstack.h xcoffout.h c-pragma.h
dwarfout.o : dwarfout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) dwarf.h \
flags.h insn-config.h reload.h output.h defaults.h
flags.h insn-config.h reload.h output.h defaults.h toplev.h
dwarf2out.o : dwarf2out.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) dwarf2.h \
flags.h insn-config.h insn-codes.h reload.h output.h defaults.h \
hard-reg-set.h regs.h expr.h toplev.h

View File

@ -37,6 +37,7 @@ Boston, MA 02111-1307, USA. */
#include "function.h"
#include "recog.h"
#include "expr.h"
#include "toplev.h"
#if HAVE_STDLIB_H
#include <stdlib.h>

View File

@ -32,6 +32,7 @@ Boston, MA 02111-1307, USA. */
#include "reload.h"
#include "output.h"
#include "defaults.h"
#include "toplev.h"
#if defined(DWARF_TIMESTAMPS)
#if !defined(POSIX)

View File

@ -14,6 +14,7 @@ extern void debug_undef PROTO ((unsigned, char *));
extern void fatal PVPROTO ((char *, ...))
ATTRIBUTE_PRINTF_1;
extern void fatal_io_error PROTO ((char *));
extern void pfatal_with_name PROTO ((char *));
extern void warning PVPROTO ((char *, ...))
ATTRIBUTE_PRINTF_1;
extern void error PVPROTO ((char *, ...))