diff options
author | Richard Stallman <rms@gnu.org> | 1993-07-09 05:09:25 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-07-09 05:09:25 +0000 |
commit | 9c3b4c8be31b5a7a12590c518c49fb19fd951736 (patch) | |
tree | c34d95a1a00975818b5a07bd3652257078e12a40 /gcc | |
parent | c90fb4e6d45e0101d10f14473df0bbaf322f7f3e (diff) | |
download | gcc-9c3b4c8be31b5a7a12590c518c49fb19fd951736.zip gcc-9c3b4c8be31b5a7a12590c518c49fb19fd951736.tar.gz gcc-9c3b4c8be31b5a7a12590c518c49fb19fd951736.tar.bz2 |
Include stdio.h before rtl.h.
From-SVN: r4884
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/combine.c | 4 | ||||
-rw-r--r-- | gcc/cse.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 3763ab3..5b44d66 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -74,6 +74,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ combine anyway. */ #include "config.h" +/* Must precede rtl.h for FFS. */ +#include <stdio.h> + #include "gvarargs.h" #include "rtl.h" #include "flags.h" @@ -87,7 +90,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "insn-attr.h" #include "recog.h" #include "real.h" -#include <stdio.h> /* It is not safe to use ordinary gen_lowpart in combine. Use gen_lowpart_for_combine instead. See comments there. */ @@ -19,6 +19,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "config.h" +/* Must precede rtl.h for FFS. */ +#include <stdio.h> + #include "rtl.h" #include "regs.h" #include "hard-reg-set.h" @@ -27,7 +30,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "insn-config.h" #include "recog.h" -#include <stdio.h> #include <setjmp.h> /* The basic idea of common subexpression elimination is to go |