This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

c-typeck.c include rtl.h earlier.


All,

This patch moves the include for rtl.h so that it's the first
file included after system.h

bootstrapped i686-pc-linux-gnu all languages.

Graham

ChangeLog

	* c-typeck.c: Include rtl.h earlier .

Index: gcc/c-typeck.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/c-typeck.c,v
retrieving revision 1.163
diff -c -p -r1.163 c-typeck.c
*** c-typeck.c  2001/12/28 09:51:19     1.163
--- c-typeck.c  2001/12/30 06:40:35     
*************** Software Foundation, 59 Temple Place - S
*** 31,42 ****
  
  #include "config.h"
  #include "system.h"
  #include "tree.h"
  #include "c-tree.h"
  #include "tm_p.h"
  #include "flags.h"
  #include "output.h"
- #include "rtl.h"
  #include "expr.h"
  #include "toplev.h"
  #include "intl.h"
--- 31,42 ----

  #include "config.h"
  #include "system.h"
+ #include "rtl.h"
  #include "tree.h"
  #include "c-tree.h"
  #include "tm_p.h"
  #include "flags.h"
  #include "output.h"
  #include "expr.h"
  #include "toplev.h"
  #include "intl.h"


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]