i386-387-1.c: Add new test for __builtin_fmod.
authorUros Bizjak <uros@kss-loka.si>
Fri, 7 May 2004 05:55:06 +0000 (07:55 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Fri, 7 May 2004 05:55:06 +0000 (07:55 +0200)
* gcc.dg/i386-387-1.c: Add new test for __builtin_fmod.
* gcc.dg/i386-387-2.c: Likewise.

* gcc.dg/i386-387-5.c: Add new tests for __builtin_log1p and
__builtin_drem.
* gcc.dg/i386-387-6.c: Likewise.

From-SVN: r81607

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/i386-387-1.c
gcc/testsuite/gcc.dg/i386-387-2.c
gcc/testsuite/gcc.dg/i386-387-5.c
gcc/testsuite/gcc.dg/i386-387-6.c

index c94bb5442cd2d4f316bdc0dd1f23611f8e85fd92..2f569390496fd5225d92e3a5b73e522f56d89424 100644 (file)
@@ -1,3 +1,12 @@
+2004-05-07  Uros Bizjak  <uros@kss-loka.si>
+
+       * gcc.dg/i386-387-1.c: Add new test for __builtin_fmod.
+       * gcc.dg/i386-387-2.c: Likewise.
+
+       * gcc.dg/i386-387-5.c: Add new tests for __builtin_log1p and
+       __builtin_drem.
+       * gcc.dg/i386-387-6.c: Likewise.
+
 2004-05-07  Uros Bizjak  <uros@kss-loka.si>
 
        * gcc.dg/builtins-33.c:  Also check log1p*.
index c196f2dc3e5e54e2385d7b09724e844c694e429d..92b671bf99c53fbfd39ee6214424c809e3184b40 100644 (file)
@@ -8,6 +8,7 @@
 /* { dg-final { scan-assembler "call\t_?log" } } */
 /* { dg-final { scan-assembler "call\t_?exp" } } */
 /* { dg-final { scan-assembler "call\t_?tan" } } */
+/* { dg-final { scan-assembler "call\t_?fmod" } } */
 
 double f1(double x) { return __builtin_sin(x); }
 double f2(double x) { return __builtin_cos(x); }
@@ -16,3 +17,4 @@ double f4(double x, double y) { return __builtin_atan2(x,y); }
 double f5(double x) { return __builtin_log(x); }
 double f6(double x) { return __builtin_exp(x); }
 double f7(double x) { return __builtin_tan(x); }
+double f8(double x, double y) { return __builtin_fmod(x,y); }
index f98e04accd1a8e4d9243b6cfdaf3b7bcabcd1fc6..11eb0cc9aa592c2d1a2bceae2d06dd1ee63ac251 100644 (file)
@@ -8,6 +8,7 @@
 /* { dg-final { scan-assembler "fyl2x" } } */
 /* { dg-final { scan-assembler "f2xm1" } } */
 /* { dg-final { scan-assembler "fptan" } } */
+/* { dg-final { scan-assembler "fprem" } } */
 
 double f1(double x) { return __builtin_sin(x); }
 double f2(double x) { return __builtin_cos(x); }
@@ -16,3 +17,4 @@ double f4(double x, double y) { return __builtin_atan2(x,y); }
 double f5(double x) { return __builtin_log(x); }
 double f6(double x) { return __builtin_exp(x); }
 double f7(double x) { return __builtin_tan(x); }
+double f8(double x, double y) { return __builtin_fmod(x,y); }
index 2c86dd0869a66d59b2d51b99266e67f4cd51e775..7c51297742006a3a315ac551a46971a63ff92029 100644 (file)
@@ -2,6 +2,9 @@
 /* { dg-do compile { target "i?86-*-*" } } */
 /* { dg-options "-O -ffast-math -mfpmath=387 -mno-fancy-math-387 -march=i386" } */
 /* { dg-final { scan-assembler "call\t_?atan" } } */
+/* { dg-final { scan-assembler "call\t_?log1p" } } */
+/* { dg-final { scan-assembler "call\t_?drem" } } */
 
 double f1(double x) { return __builtin_atan(x); }
-
+double f2(double x) { return __builtin_log1p(x); }
+double f3(double x, double y) { return __builtin_drem(x,y); }
index 8eb29a11320b3ef5e53e58f88e624efc94e9fe78..c8e5311c091325b687541f61f0f8b503bc8582c2 100644 (file)
@@ -2,5 +2,9 @@
 /* { dg-do compile { target "i?86-*-*" } } */
 /* { dg-options "-O -ffast-math -mfpmath=387 -march=i686 -mno-fancy-math-387" } */
 /* { dg-final { scan-assembler "fpatan" } } */
+/* { dg-final { scan-assembler "fyl2xp1" } } */
+/* { dg-final { scan-assembler "fprem1" } } */
 
 double f1(double x) { return __builtin_atan(x); }
+double f2(double x) { return __builtin_log1p(x); }
+double f3(double x, double y) { return __builtin_drem(x,y); }