Commit f70f7c73 by Rainer Orth Committed by Rainer Orth

Declare fma in gcc.target/i386/pr59390.c

	* 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
parent b5cd2a02
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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment