882e337b65
PR libmudflap/26442 * tree-mudflap.c (mx_register_decls): Guard warning by !DECL_ARTIFICIAL check. * testsuite/libmudflap.c++/pass60-frag.cxx: New test. From-SVN: r131249
14 lines
80 B
C++
14 lines
80 B
C++
// PR 26442
|
|
|
|
struct A
|
|
{
|
|
A();
|
|
};
|
|
|
|
int main()
|
|
{
|
|
if (0)
|
|
A();
|
|
return 0;
|
|
}
|