From: Richard Kenner Date: Sat, 19 Mar 1994 13:35:45 +0000 (-0500) Subject: (output_epilogue, insn_names): Write correct names for patterns before X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35a3523cbfc43bd34a456eea0c7f65a8694d13fa;p=gcc.git (output_epilogue, insn_names): Write correct names for patterns before first named pattern. From-SVN: r6824 --- diff --git a/gcc/genoutput.c b/gcc/genoutput.c index eea252aed00..81f8a5fd0e0 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 Free Software Foundation, Inc. + Copyright (C) 1987, 1988, 1992, 1994 Free Software Foundation, Inc. This file is part of GNU CC. @@ -237,7 +237,7 @@ output_epilogue () char * next_name; register struct data *n; - for (n = insn_data, next = 0; n; n = n->next, next++) + for (n = insn_data, next = 1; n; n = n->next, next++) if (n->name) { next_name = n->name;