From: Richard Kenner Date: Fri, 13 Jan 1995 23:08:07 +0000 (-0500) Subject: (output_epilogue): Do not reference gen_ functions for insns whose X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52a1f21f03c0dd7c6c84139871cae7c8190bd912;p=gcc.git (output_epilogue): Do not reference gen_ functions for insns whose names begin with '*'. From-SVN: r8743 --- diff --git a/gcc/genoutput.c b/gcc/genoutput.c index 6636fc43b6c..20c101eaed1 100644 --- a/gcc/genoutput.c +++ b/gcc/genoutput.c @@ -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");