aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGeoffrey Keating <geoffk@apple.com>2005-04-12 02:10:57 +0000
committerGeoffrey Keating <geoffk@gcc.gnu.org>2005-04-12 02:10:57 +0000
commitd5bfbe09420630280b2cdeb94ccd526d73a8af27 (patch)
tree1f4da54ffa1318ba4099e8d826a3de8c248aba99 /gcc
parent004d3859e9793a45c7254a64e4c84b9b9b81101b (diff)
downloadgcc-d5bfbe09420630280b2cdeb94ccd526d73a8af27.zip
gcc-d5bfbe09420630280b2cdeb94ccd526d73a8af27.tar.gz
gcc-d5bfbe09420630280b2cdeb94ccd526d73a8af27.tar.bz2
* gcc.dg/i386-darwin-fpmath.c: New.
From-SVN: r98003
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.dg/i386-darwin-fpmath.c9
2 files changed, 13 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index e7d40f8..b37dd51 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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.
diff --git a/gcc/testsuite/gcc.dg/i386-darwin-fpmath.c b/gcc/testsuite/gcc.dg/i386-darwin-fpmath.c
new file mode 100644
index 0000000..7db6946
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/i386-darwin-fpmath.c
@@ -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;
+}