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-lex.c include tree.h before expr.h


All

This patch changes the order in which expr.h and tree.h are included

Bootstrapped i686-pc-linux-gnu all languages.

Graham

	* c-lex.c: Include tree.h before expr.h

Index: gcc/c-lex.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/c-lex.c,v
retrieving revision 1.162
diff -c -p -r1.162 c-lex.c
*** c-lex.c     2001/12/16 13:58:06     1.162
--- c-lex.c     2001/12/30 06:40:34
*************** Software Foundation, 59 Temple Place - S
*** 23,30 ****
  #include "system.h"

  #include "rtl.h"
- #include "expr.h"
  #include "tree.h"
  #include "input.h"
  #include "output.h"
  #include "c-lex.h"
--- 23,30 ----
  #include "system.h"

  #include "rtl.h"
  #include "tree.h"
+ #include "expr.h"
  #include "input.h"
  #include "output.h"
  #include "c-lex.h"


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