diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-10-08 08:01:50 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-10-08 08:01:50 +0000 |
commit | dcc3fcf29258eb75d78c0275e26349c783ef50c4 (patch) | |
tree | 61360ff02c4c36612ca42a67b7f933cd3890e226 /gcc/genopinit.c | |
parent | f119ba235e0c0d665d3c72d9c6e4c0ed6467626e (diff) | |
download | gcc-dcc3fcf29258eb75d78c0275e26349c783ef50c4.tar.gz |
genopinit.c (main): Output code to declare undefined variables.
* genopinit.c (main): Output code to declare undefined
variables.
From-SVN: r72220
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) |