Commit a5fdcda8 by Andrew Pinski Committed by Andrew Pinski

200031109-1.c: New test.

2003-11-09  Andrew Pinski  <pinskia@physics.uc.edu>

	* gcc.c-torture/compile/200031109-1.c: New test.

From-SVN: r73397
parent f6a7db9e
2003-11-09 Andrew Pinski <pinskia@physics.uc.edu>
* gcc.c-torture/compile/200031109-1.c: New test.
2003-11-08 Joseph S. Myers <jsm@polyomino.org.uk>
PR c/3190
......
/* For a short time on the tree-ssa branch this would warn that
value was not initialized as it was optimizing !(value = (m?1:2))
to 0 and not setting value before. */
int t(int m)
{
int value;
if (!(value = (m?1:2)))
value = 0;
return value;
}
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