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/emit-rtl.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/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index a540ef7..7643d7d 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -34,7 +34,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ is the kind of rtx's they make and what arguments they use. */ #include "config.h" -#include <stdio.h> #include "gvarargs.h" #include "rtl.h" #include "flags.h" @@ -43,6 +42,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "regs.h" #include "insn-config.h" #include "real.h" +#include <stdio.h> /* This is reset to LAST_VIRTUAL_REGISTER + 1 at the start of each function. After rtl generation, it is 1 plus the largest register number used. */ |