mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-05 06:29:32 +08:00
Fix merging error with formerly cygnus local change.
* c-decl.c (shadow_tag_warned): Use specs not declspecs in for loop. From-SVN: r20511
This commit is contained in:
parent
a7db2896a5
commit
3bd89472d1
@ -1,3 +1,7 @@
|
||||
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>
|
||||
|
||||
* regmove.c: Undo June 11th change for now.
|
||||
|
@ -3577,7 +3577,7 @@ shadow_tag_warned (declspecs, warned)
|
||||
following code. */
|
||||
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 enum tree_code code = TREE_CODE (value);
|
||||
|
Loading…
Reference in New Issue
Block a user