diff options
| author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-30 08:05:55 +0000 |
|---|---|---|
| committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-30 08:05:55 +0000 |
| commit | fe8a8fe78768da181f9e3bd48b756f60132502bb (patch) | |
| tree | 667b2c09b41fe0dd072453736402dee61af98734 | |
| parent | 44b2594fab1ddb5c71c8a8810bc49426aa910564 (diff) | |
| download | ppe42-gcc-fe8a8fe78768da181f9e3bd48b756f60132502bb.tar.gz ppe42-gcc-fe8a8fe78768da181f9e3bd48b756f60132502bb.zip | |
* i386.c: Move include of "config.h" to before that of <setjmp.h>.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36677 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 51c42f220cd..9570b2835c0 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 b66e5a4df56..1f0bee79f9f 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" |

