Commit e92df3ed by Mike Stump Committed by Mike Stump

* treelang/compile/var_defs.tree: Adjust.

From-SVN: r119628
parent ff4ecab8
2006-12-07 Mike Stump <mrs@apple.com>
* treelang/compile/var_defs.tree: Adjust.
2006-12-06 Mark Mitchell <mark@codesourcery.com>
PR c++/29730
......@@ -13,12 +13,12 @@ condition
{
if (arg1)
{
automatic int i;
return i + 1; // { dg-warning "uninitialized" }
automatic int i; // { dg-warning "was declared here" }
return i + 1; // { dg-warning "uninitialized" }
}
else
{
automatic int j;
return j; // { dg-warning "uninitialized" }
automatic int j; // { dg-warning "was declared here" }
return j; // { dg-warning "uninitialized" }
}
}
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