(output_epilogue): Do not reference gen_ functions for insns whose

names begin with '*'.

From-SVN: r8743
This commit is contained in:
Richard Kenner 1995-01-13 18:08:07 -05:00
parent 6b6ca8442d
commit 52a1f21f03
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/* Generate code from to output assembler insns as recognized from rtl.
Copyright (C) 1987, 1988, 1992, 1994 Free Software Foundation, Inc.
Copyright (C) 1987, 1988, 1992, 1994, 1995 Free Software Foundation, Inc.
This file is part of GNU CC.
@ -222,7 +222,7 @@ output_epilogue ()
printf ("\nrtx (*const insn_gen_function[]) () =\n {\n");
for (d = insn_data; d; d = d->next)
{
if (d->name)
if (d->name && d->name[0] != '*')
printf (" gen_%s,\n", d->name);
else
printf (" 0,\n");