diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1992-08-20 05:58:18 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1992-08-20 05:58:18 -0400 |
commit | f8d97cf4724fb1d966118b4d1870f553da4fc09c (patch) | |
tree | 2d78eb61c0c67f5d8fcbe60828c1e7c28af9bfb2 /gcc/final.c | |
parent | 99effc21d4027b4391fbdddea247f25dd568e366 (diff) | |
download | gcc-f8d97cf4724fb1d966118b4d1870f553da4fc09c.zip gcc-f8d97cf4724fb1d966118b4d1870f553da4fc09c.tar.gz gcc-f8d97cf4724fb1d966118b4d1870f553da4fc09c.tar.bz2 |
Put include of stdio.h after GCC header files (for i860-stardent-sysv4).
From-SVN: r1905
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c index 7f4581a4..7c15200 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -43,7 +43,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ directly as assembler code by the macros FUNCTION_PROLOGUE and FUNCTION_EPILOGUE. Those instructions never exist as rtl. */ -#include <stdio.h> #include "config.h" #include "gvarargs.h" #include "rtl.h" @@ -59,6 +58,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "output.h" #include "hard-reg-set.h" #include "defaults.h" +#include <stdio.h> /* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist. */ #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO) |