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, 4.7]: Include output.h in lto.c


Hello!

We need to #include "output.h" due to the use of %wx in a diagnostic
string. For 4.8 Steven moved "typedef HOST_WIDE_INT
__gcc_host_wide_int__" to hwint.h, but for 4.7 branch we need output.h
for the typedef.

2013-02-09  Uros Bizjak  <ubizjak@gmail.com>

	* lto.c: Include output.h.

Bootstrapped on x86_64-pc-linux-gnu, committed to 4.7 branch as obvious.

Uros.

Index: lto.c
===================================================================
--- lto.c       (revision 195911)
+++ lto.c       (working copy)
@@ -25,6 +25,7 @@
 #include "toplev.h"
 #include "tree.h"
 #include "tree-flow.h"
+#include "output.h"
 #include "diagnostic-core.h"
 #include "tm.h"
 #include "cgraph.h"


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