Commit 6aea8136 by Ian Lance Taylor Committed by Ian Lance Taylor

re PR middle-end/16558 (bogus missing-return warning)

	PR middle-end/16558
	* g++.dg/warn/Wreturn-type-2.C: New test.

From-SVN: r94382
parent 09f8cf2d
2005-01-28 Ian Lance Taylor <ian@airs.com>
PR middle-end/16558
* g++.dg/warn/Wreturn-type-2.C: New test.
2004-06-24 Jeff Law <law@redhat.com>
* gcc.dg/tree-ssa/20050128-1.c: New test.
......
// PR middle-end/16558
// { dg-options "-Wreturn-type" }
struct C
{
C ();
~C ();
};
int getref (int ndx)
{
C d;
if (ndx != 0) {
C base;
return 0;
}
else
return 0;
}
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