OSDN Git Service

* varray.c: Include errors.h for internal_error and trim_filename
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 Jul 2001 20:30:41 +0000 (20:30 +0000)
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 Jul 2001 20:30:41 +0000 (20:30 +0000)
declarations.

* Makefile.in (varray.o): Add errors.h.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43875 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/Makefile.in
gcc/varray.c

index 76631d7..a2ef4e7 100644 (file)
@@ -1484,7 +1484,8 @@ bitmap.o : bitmap.c $(GCONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h $(BASIC_BLOCK_H) \
 global.o : global.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h reload.h function.h \
    $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h output.h toplev.h \
    $(TM_P_H)
-varray.o : varray.c $(CONFIG_H) $(SYSTEM_H) varray.h $(RTL_H) $(TREE_H) bitmap.h
+varray.o : varray.c $(CONFIG_H) $(SYSTEM_H) varray.h $(RTL_H) $(TREE_H) bitmap.h \
+   errors.h
 reload.o : reload.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h output.h $(EXPR_H) \
    reload.h $(RECOG_H) hard-reg-set.h insn-config.h $(REGS_H) \
    function.h real.h toplev.h $(TM_P_H)
index 7cf42f0..5b12370 100644 (file)
@@ -1,5 +1,5 @@
 /* Virtual array support.
-   Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
    Contributed by Cygnus Solutions.
 
    This file is part of GNU CC.
@@ -20,6 +20,7 @@
    Boston, MA 02111-1307, USA.  */
 
 #include "config.h"
+#include "errors.h"
 #include "system.h"
 #include "rtl.h"
 #include "tree.h"