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/genemit.c | |
parent | 2a8034f8164d3953e4a25fa577d465b6057bdd66 (diff) | |
download | gcc-729da3f5a8f4cc906c185e4cbc9bdbac657a1cca.zip gcc-729da3f5a8f4cc906c185e4cbc9bdbac657a1cca.tar.gz gcc-729da3f5a8f4cc906c185e4cbc9bdbac657a1cca.tar.bz2 |
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/genemit.c')
-rw-r--r-- | gcc/genemit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genemit.c b/gcc/genemit.c index 4c61282..6209484 100644 --- a/gcc/genemit.c +++ b/gcc/genemit.c @@ -737,7 +737,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 \"expr.h\"\n"); printf ("#include \"real.h\"\n"); |