Commit 0b42c8f8 by Zack Weinberg Committed by Zack Weinberg

genattr.c (gen_attr): Don't emit a comma after the last enumerator.

	* genattr.c (gen_attr): Don't emit a comma after the last
	enumerator.

From-SVN: r53440
parent 2f9a2cd7
2002-05-13 Zack Weinberg <zack@codesourcery.com>
* genattr.c (gen_attr): Don't emit a comma after the last
enumerator.
2002-05-13 Richard Henderson <rth@redhat.com>
* cfgrtl.c (purge_dead_edges): Handle abnormal call edges created
......
......@@ -106,7 +106,8 @@ gen_attr (attr)
putchar ('_');
while (tag != p)
putchar (TOUPPER (*tag++));
fputs (", ", stdout);
if (*p == ',')
fputs (", ", stdout);
}
fputs ("};\n", stdout);
......
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