* gcc.dg/i386-darwin-fpmath.c: New.

From-SVN: r98003
This commit is contained in:
Geoffrey Keating 2005-04-12 02:10:57 +00:00 committed by Geoffrey Keating
parent 004d3859e9
commit d5bfbe0942
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-04-11 Geoffrey Keating <geoffk@apple.com>
* gcc.dg/i386-darwin-fpmath.c: New.
2004-04-11 Devang Patel <dpatel@apple.com>
* lib/target-supports.exp (check_effective_target_vect_condition): New.

View File

@ -0,0 +1,9 @@
/* { dg-do compile { target i?86-*-darwin* } } */
/* { dg-final { scan-assembler "addsd" } } */
/* Do not add -msse or -msse2 or -mfpmath=sse to the options. GCC is
supposed to use SSE math on Darwin by default, and libm won't work
right if it doesn't. */
double foo(double x, double y)
{
return x + y;
}