]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Declare fma in gcc.target/i386/pr59390.c
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Mon, 6 Jan 2014 13:22:59 +0000 (13:22 +0000)
committerRainer Orth <ro@gcc.gnu.org>
Mon, 6 Jan 2014 13:22:59 +0000 (13:22 +0000)
* gcc.target/i386/pr59390.c: Replace math.h by fma declaration.
* gcc.target/i386/pr59390_1.c: Likewise.
* gcc.target/i386/pr59390_2.c: Likewise.

From-SVN: r206357

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr59390.c
gcc/testsuite/gcc.target/i386/pr59390_1.c
gcc/testsuite/gcc.target/i386/pr59390_2.c

index e2b84c5278fd8beab86845edf4b7ed3e6b9ebe07..ba82431f8cb90e30039cc681e6493264eab6defd 100644 (file)
@@ -1,3 +1,9 @@
+2014-01-06  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * gcc.target/i386/pr59390.c: Replace math.h by fma declaration.
+       * gcc.target/i386/pr59390_1.c: Likewise.
+       * gcc.target/i386/pr59390_2.c: Likewise.
+
 2014-01-06  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gcc.dg/pr59350.c: Tweak.
index 49ce02d1a21888a8fb99859b15a6202adf7d093f..7dc925ae9fbbb6d4ae29c9bc9afe477e736fc0c2 100644 (file)
@@ -1,7 +1,7 @@
 /* { dg-do compile } */
 /* { dg-options "-std=c99 -O3" } */
 
-#include "math.h"
+extern double fma (double, double, double);
 void fun() __attribute__((target("fma")));
 
 void 
index 2bd32a4ebdbd736179912a6fa4798dcf6143f725..632eb6f9a4f2ce4f855b9f3ac877be3e08661d13 100644 (file)
@@ -1,7 +1,7 @@
 /* { dg-do compile } */
 /* { dg-options "-std=c99 -O3" } */
 
-#include "math.h"
+extern double fma (double, double, double);
 void fun() __attribute__((target("fma")));
 
 __attribute__((target("fma")))
index 55a181a8ad483a2e20e22b00b0b7d4a1e922cb90..6142a085eedb2373b439bf8dcdb27ee825942a13 100644 (file)
@@ -1,7 +1,7 @@
 /* { dg-do compile } */
 /* { dg-options "-std=c99 -O3 -mfma" } */
 
-#include "math.h"
+extern double fma (double, double, double);
 void fun() __attribute__((target("fma")));
 
 void