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]

[patch] fix fallout from lto-streamer.h not including gimple.h


2 target files also included lto-streamer.h but did not include gimple.h. Fixed thusly.

Applied as revision 204166

Andrew


	* config/darwin.c: Include gimple.h.
	* config/i386/winnt.c: Likewise.

Index: config/darwin.c
===================================================================
*** config/darwin.c	(revision 204164)
--- config/darwin.c	(working copy)
*************** along with GCC; see the file COPYING3.
*** 45,50 ****
--- 45,51 ----
  #include "df.h"
  #include "debug.h"
  #include "obstack.h"
+ #include "gimple.h"
  #include "lto-streamer.h"
  
  /* Darwin supports a feature called fix-and-continue, which is used
Index: config/i386/winnt.c
===================================================================
*** config/i386/winnt.c	(revision 204164)
--- config/i386/winnt.c	(working copy)
*************** along with GCC; see the file COPYING3.
*** 35,40 ****
--- 35,41 ----
  #include "ggc.h"
  #include "target.h"
  #include "except.h"
+ #include "gimple.h"
  #include "lto-streamer.h"
  
  /* i386/PE specific attribute support.

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