diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-08-04 11:34:51 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-08-04 11:34:51 +0000 |
commit | 2cfa128d714bcbace5fbc4bc3afab386868ba9fe (patch) | |
tree | 47af3d79157700e704725f14b6ebec05863b3e4b /gcc/genattrtab.c | |
parent | 54959bb0eb0133a0932ac0277b92cc197d0b7b63 (diff) | |
download | gcc-2cfa128d714bcbace5fbc4bc3afab386868ba9fe.tar.gz |
Include gvarargs.h after hconfig.h, like elsewhere.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5067 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genattrtab.c')
-rw-r--r-- | gcc/genattrtab.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/genattrtab.c b/gcc/genattrtab.c index 658871aa028..244d636c65b 100644 --- a/gcc/genattrtab.c +++ b/gcc/genattrtab.c @@ -1,5 +1,5 @@ /* Generate code from machine description to compute values of attributes. - Copyright (C) 1991 Free Software Foundation, Inc. + Copyright (C) 1991, 1993 Free Software Foundation, Inc. Contributed by Richard Kenner (kenner@nyu.edu) This file is part of GNU CC. @@ -94,8 +94,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ EQ_ATTR rtx is true if !volatil and false if volatil. */ -#include "gvarargs.h" #include "hconfig.h" +/* gvarargs must always be included after *config.h. */ +#include "gvarargs.h" #include "rtl.h" #include "insn-config.h" /* For REGISTER_CONSTRAINTS */ #include <stdio.h> |