aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Myers <jsm28@cam.ac.uk>2000-09-30 09:05:55 +0100
committerJoseph Myers <jsm28@gcc.gnu.org>2000-09-30 09:05:55 +0100
commit1fba7553329dace8b58789ffcadcb6149d9bdc8e (patch)
tree667b2c09b41fe0dd072453736402dee61af98734
parent28e6b1c270316aa93f2f095d560d5926716b3e26 (diff)
downloadgcc-1fba7553329dace8b58789ffcadcb6149d9bdc8e.zip
gcc-1fba7553329dace8b58789ffcadcb6149d9bdc8e.tar.gz
gcc-1fba7553329dace8b58789ffcadcb6149d9bdc8e.tar.bz2
* i386.c: Move include of "config.h" to before that of <setjmp.h>.
From-SVN: r36677
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/i386/i386.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 51c42f2..9570b28 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
2000-09-30 Joseph S. Myers <jsm28@cam.ac.uk>
+ * i386.c: Move include of "config.h" to before that of <setjmp.h>.
+
+2000-09-30 Joseph S. Myers <jsm28@cam.ac.uk>
+
* c-tree.texi, contrib.texi, gcc.texi, install.texi, invoke.texi:
Consistently use @email for formatting email addresses.
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
index b66e5a4..1f0bee7 100644
--- a/gcc/config/i386/i386.c
+++ b/gcc/config/i386/i386.c
@@ -19,8 +19,8 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#include <setjmp.h>
#include "config.h"
+#include <setjmp.h>
#include "system.h"
#include "rtl.h"
#include "tree.h"