diff options
author | Robert Lipe <robertl@dgii.com> | 1998-09-20 09:06:51 +0000 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 1998-09-20 09:06:51 +0000 |
commit | 391705971a17c18ac3f3ca2b02979c1a52a945c6 (patch) | |
tree | 206f0860ea6d45081ac1f5daff7f08b4b6641be0 | |
parent | 7511142254795beb9417f1c226d3ba471a9272fc (diff) | |
download | gcc-391705971a17c18ac3f3ca2b02979c1a52a945c6.zip gcc-391705971a17c18ac3f3ca2b02979c1a52a945c6.tar.gz gcc-391705971a17c18ac3f3ca2b02979c1a52a945c6.tar.bz2 |
except.c: Include system.h.
* except.c: Include system.h.
* Makefile.in (except.o): Depend on system.h.
From-SVN: r22494
-rw-r--r-- | gcc/ch/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/ch/Makefile.in | 2 | ||||
-rw-r--r-- | gcc/ch/except.c | 1 |
3 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog index b27ba2e..7370b75 100644 --- a/gcc/ch/ChangeLog +++ b/gcc/ch/ChangeLog @@ -1,3 +1,9 @@ +Sun Sep 20 11:02:55 1998 Robert Lipe <robertl@dgii.com> + + * except.c: Include system.h. + + * Makefile.in (except.o): Depend on system.h. + Sun Sep 20 09:25:13 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * Makefile.in (actions.o, convert.o, decl.o, expr.o, lang.o, diff --git a/gcc/ch/Makefile.in b/gcc/ch/Makefile.in index 712272b..68ed339 100644 --- a/gcc/ch/Makefile.in +++ b/gcc/ch/Makefile.in @@ -278,7 +278,7 @@ convert.o : convert.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../flags.h \ decl.o : decl.c $(CONFIG_H) $(CHILL_TREE_H) $(srcdir)/../flags.h lex.h \ $(srcdir)/../system.h $(srcdir)/../toplev.h except.o : except.c $(CONFIG_H) $(srcdir)/../tree.h $(RTL_H) $(CHILL_TREE_H) \ - $(srcdir)/../toplev.h + $(srcdir)/../system.h $(srcdir)/../toplev.h expr.o : expr.c $(CONFIG_H) $(RTL_H) $(CHILL_TREE_H) $(srcdir)/../flags.h \ $(srcdir)/../expr.h ../insn-codes.h $(srcdir)/../tree.h lex.h \ $(srcdir)/../system.h $(srcdir)/../toplev.h diff --git a/gcc/ch/except.c b/gcc/ch/except.c index db02a92..9312e02 100644 --- a/gcc/ch/except.c +++ b/gcc/ch/except.c @@ -22,6 +22,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "tree.h" #include "ch-tree.h" #include "rtl.h" +#include "system.h" #include "toplev.h" /* On Suns this can get you to the right definition if you |