diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-08 08:01:50 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-08 08:01:50 +0000 |
commit | 0beae6424f8c488e2eec21537ea95b84131f3c71 (patch) | |
tree | 61360ff02c4c36612ca42a67b7f933cd3890e226 /gcc/genopinit.c | |
parent | 4b906ad290e8a557a9253dce059eff07a49fb470 (diff) | |
download | gcc-0beae6424f8c488e2eec21537ea95b84131f3c71.tar.gz |
* genopinit.c (main): Output code to declare undefined
variables.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72220 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genopinit.c')
-rw-r--r-- | gcc/genopinit.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/genopinit.c b/gcc/genopinit.c index 71fbbbf3621..90d529a7689 100644 --- a/gcc/genopinit.c +++ b/gcc/genopinit.c @@ -356,6 +356,11 @@ from the machine description file `md'. */\n\n"); printf ("void\ninit_all_optabs (void)\n{\n"); + puts ("\ +#ifdef FIXUNS_TRUNC_LIKE_FIX_TRUNC\n\ + int i, j;\n\ +#endif\n"); + /* Read the machine description. */ while (1) |