diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-01 22:44:48 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-01 15:44:48 -0700 |
commit | 729da3f5a8f4cc906c185e4cbc9bdbac657a1cca (patch) | |
tree | df94a82019f622d41b626b75e30ea5a5721555d7 /gcc/genopinit.c | |
parent | 2a8034f8164d3953e4a25fa577d465b6057bdd66 (diff) | |
download | gcc-729da3f5a8f4cc906c185e4cbc9bdbac657a1cca.tar.gz |
genattrtab.c: Make generated file use system.h, instead of including stdio.h, etc directly.
* genattrtab.c: Make generated file use system.h, instead of
including stdio.h, etc directly.
* genextract.c, genopinit.c, genoutput.c: Likewise.
* genpeep.c, genrecog.c: Likewise
* genoutput.c (process_template): Mark operands in the generated
function as potentially unused if compiling with GNU CC.
From-SVN: r18941
Diffstat (limited to 'gcc/genopinit.c')
-rw-r--r-- | gcc/genopinit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genopinit.c b/gcc/genopinit.c index 0320c29fc0d..7944dec03cb 100644 --- a/gcc/genopinit.c +++ b/gcc/genopinit.c @@ -347,7 +347,7 @@ main (argc, argv) from the machine description file `md'. */\n\n"); printf ("#include \"config.h\"\n"); - printf ("#include <stdio.h>\n"); + printf ("#include \"system.h\"\n"); printf ("#include \"rtl.h\"\n"); printf ("#include \"flags.h\"\n"); printf ("#include \"insn-flags.h\"\n"); |