summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2010-11-22 15:38:35 -0500
committerUlrich Drepper <drepper@gmail.com>2010-11-22 15:38:35 -0500
commit3bf8d1b10c66bfd58d8f24ea9e31d9fc0d24553b (patch)
treef6e6cbb6c563bae40f50376c223156fd80113346
parent6db52fbb272979bdcd5d5dd7ab187e1893eda9e3 (diff)
downloadglibc-3bf8d1b10c66bfd58d8f24ea9e31d9fc0d24553b.tar.gz
glibc-3bf8d1b10c66bfd58d8f24ea9e31d9fc0d24553b.tar.xz
glibc-3bf8d1b10c66bfd58d8f24ea9e31d9fc0d24553b.zip
ldbl-128 fmal compile fix
-rw-r--r--ChangeLog4
-rw-r--r--sysdeps/ieee754/ldbl-128/s_fmal.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4f4b03c9b8..b189baa02b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-10-20  Jakub Jelinek  <jakub@redhat.com>
+
+	* sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Fix up inline asm.
+
 2010-05-31  Petr Baudis  <pasky@suse.cz>
 
 	[BZ #11149]
diff --git a/sysdeps/ieee754/ldbl-128/s_fmal.c b/sysdeps/ieee754/ldbl-128/s_fmal.c
index b750538b8a..2dec70ee17 100644
--- a/sysdeps/ieee754/ldbl-128/s_fmal.c
+++ b/sysdeps/ieee754/ldbl-128/s_fmal.c
@@ -176,7 +176,7 @@ __fmal (long double x, long double y, long double z)
 	u.ieee.mantissa3 |= fetestexcept (FE_INEXACT) != 0;
       v.d = a1 + u.d;
       /* Ensure the addition is not scheduled after fetestexcept call.  */
-      asm volatile ("" : "m" (v));
+      asm volatile ("" : : "m" (v));
       int j = fetestexcept (FE_INEXACT) != 0;
       feupdateenv (&env);
       /* Ensure the following computations are performed in default rounding