Commit a0e4b207 by Jason Merrill Committed by Jason Merrill

re PR bootstrap/66448 (Bootstrap fails on darwin after r224161)

	PR bootstrap/66448
	* toplev.c (check_global_declaration): Don't warn about a clone.

From-SVN: r224285
parent f2e609c3
2015-06-09 Jason Merrill <jason@redhat.com>
PR bootstrap/66448
* toplev.c (check_global_declaration): Don't warn about a clone.
2015-06-09 Marek Polacek <polacek@redhat.com>
PR tree-optimization/66299
......
// PR bootstrap/66448
// { dg-options "-Wunused-function" }
struct A { A(); };
namespace {
struct B: virtual A { B(); };
B::B() { }
B b;
struct C: virtual A { C(); };
C::C() { } // { dg-warning "defined but not used" }
}
......@@ -529,6 +529,7 @@ check_global_declaration (tree decl)
&& ! (DECL_NAME (decl) && TREE_USED (DECL_NAME (decl)))
&& ! DECL_EXTERNAL (decl)
&& ! DECL_ARTIFICIAL (decl)
&& ! DECL_ABSTRACT_ORIGIN (decl)
&& ! TREE_PUBLIC (decl)
/* A volatile variable might be used in some non-obvious way. */
&& ! TREE_THIS_VOLATILE (decl)
......
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