diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/i386/i386.c | 2 |
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" |
