Commit 6a5ed5bf by Richard Kenner

(push_parm_decl): Turn off warning when parameter shadows typedef.

From-SVN: r4202
parent 24113f52
......@@ -3568,12 +3568,16 @@ push_parm_decl (parm)
push_obstacks_nochange ();
decl = grokdeclarator (TREE_VALUE (parm), TREE_PURPOSE (parm), PARM, 0);
#if 0
if (DECL_NAME (decl))
{
olddecl = lookup_name (DECL_NAME (decl));
if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
pedwarn_with_decl (decl, "ANSI C forbids parameter `%s' shadowing typedef");
}
#endif
decl = pushdecl (decl);
immediate_size_expand = old_immediate_size_expand;
......
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