Commit 35a3523c by Richard Kenner

(output_epilogue, insn_names): Write correct names for patterns before

first named pattern.

From-SVN: r6824
parent 875fbf80
/* Generate code from to output assembler insns as recognized from rtl. /* 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. This file is part of GNU CC.
...@@ -237,7 +237,7 @@ output_epilogue () ...@@ -237,7 +237,7 @@ output_epilogue ()
char * next_name; char * next_name;
register struct data *n; 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) if (n->name)
{ {
next_name = n->name; next_name = n->name;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment