Commit 867a05d2 by Dale Johannesen Committed by Dale Johannesen

20030125-1.c: Correct.

2005-10-06  Dale Johannesen  <dalej@apple.com>

        * gcc.c-torture/execute/20030125-1.c:  Correct.

From-SVN: r105046
parent 24c2fde2
2005-10-06 Dale Johannesen <dalej@apple.com>
* gcc.c-torture/execute/20030125-1.c: Correct.
2005-10-06 Richard Guenther <rguenther@suse.de>
PR tree-optimization/24238
......@@ -16,11 +16,6 @@ q1(float a)
{
return floor(a);
}
float
q2(double a)
{
return floor(a);
}
main()
{
#ifdef __OPTIMIZE__
......@@ -30,8 +25,6 @@ main()
abort ();
if (q1(0)!=0)
abort ();
if (q2(0)!=0)
abort ();
#endif
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