Commit 3bd89472 by Jim Wilson Committed by Jim Wilson

Fix merging error with formerly cygnus local change.

	* c-decl.c (shadow_tag_warned): Use specs not declspecs in for loop.

From-SVN: r20511
parent a7db2896
Mon Jun 15 13:20:33 1998 Jim Wilson <wilson@cygnus.com>
* c-decl.c (shadow_tag_warned): Use specs not declspecs in for loop.
Mon Jun 15 15:33:45 1998 Michael Meissner <meissner@cygnus.com> Mon Jun 15 15:33:45 1998 Michael Meissner <meissner@cygnus.com>
* regmove.c: Undo June 11th change for now. * regmove.c: Undo June 11th change for now.
......
...@@ -3577,7 +3577,7 @@ shadow_tag_warned (declspecs, warned) ...@@ -3577,7 +3577,7 @@ shadow_tag_warned (declspecs, warned)
following code. */ following code. */
split_specs_attrs (declspecs, &specs, &attrs); split_specs_attrs (declspecs, &specs, &attrs);
for (link = declspecs; link; link = TREE_CHAIN (link)) for (link = specs; link; link = TREE_CHAIN (link))
{ {
register tree value = TREE_VALUE (link); register tree value = TREE_VALUE (link);
register enum tree_code code = TREE_CODE (value); register enum tree_code code = TREE_CODE (value);
......
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