about summary refs log tree commit diff
path: root/sysdeps/s390/fpu/s_fmaf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/s390/fpu/s_fmaf.c')
-rw-r--r--sysdeps/s390/fpu/s_fmaf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/s390/fpu/s_fmaf.c b/sysdeps/s390/fpu/s_fmaf.c
index f65c73e389..8d158703a1 100644
--- a/sysdeps/s390/fpu/s_fmaf.c
+++ b/sysdeps/s390/fpu/s_fmaf.c
@@ -23,7 +23,7 @@ float
 __fmaf (float x, float y, float z)
 {
   float r;
-  asm ("maebr %0,%1,%2" : "=f" (r) : "%f" (x), "fR" (y), "0" (z));
+  __asm__ ("maebr %0,%1,%2" : "=f" (r) : "%f" (x), "fR" (y), "0" (z));
   return r;
 }
 #ifndef __fmaf