20030125-1.c: Correct.

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

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

From-SVN: r105046
This commit is contained in:
Dale Johannesen 2005-10-06 17:35:45 +00:00 committed by Dale Johannesen
parent 24c2fde2af
commit 867a05d277
2 changed files with 4 additions and 7 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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;
}