20030125-1.c: Correct.
authorDale Johannesen <dalej@apple.com>
Thu, 6 Oct 2005 17:35:45 +0000 (17:35 +0000)
committerDale Johannesen <dalej@gcc.gnu.org>
Thu, 6 Oct 2005 17:35:45 +0000 (17:35 +0000)
2005-10-06  Dale Johannesen  <dalej@apple.com>

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

From-SVN: r105046

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/20030125-1.c

index 4d9642784bc0d0bad1638a8365562b4ab637595a..d71a01930499cbf164123f03fcb259d3c90f6c51 100644 (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
index def6fabba0087a2ce6f60a8c65880ed31062d122..8eb9a4211a8649106f53a5626300848664e1e996 100644 (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;
 }