* 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
+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.
/* { dg-do compile } */
/* { dg-options "-std=c99 -O3" } */
-#include "math.h"
+extern double fma (double, double, double);
void fun() __attribute__((target("fma")));
void
/* { 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")))
/* { dg-do compile } */
/* { dg-options "-std=c99 -O3 -mfma" } */
-#include "math.h"
+extern double fma (double, double, double);
void fun() __attribute__((target("fma")));
void