gcc/libmudflap/testsuite/libmudflap.c++/pass60-frag.cxx
Volker Reichelt 882e337b65 re PR libmudflap/26442 (ICE on valid unreachable code (and no name) when compiling with -fmudflap)
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
2008-01-01 23:08:05 +00:00

14 lines
80 B
C++

// PR 26442
struct A
{
A();
};
int main()
{
if (0)
A();
return 0;
}