summary refs log tree commit diff
path: root/sysdeps/libm-i387/s_fmaf.S
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/libm-i387/s_fmaf.S')
-rw-r--r--sysdeps/libm-i387/s_fmaf.S3
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/libm-i387/s_fmaf.S b/sysdeps/libm-i387/s_fmaf.S
index 17939a819c..03c6cc0f9e 100644
--- a/sysdeps/libm-i387/s_fmaf.S
+++ b/sysdeps/libm-i387/s_fmaf.S
@@ -23,8 +23,7 @@
 	.text
 ENTRY(__fmaf)
 	flds	4(%esp)		// x
-	flds	8(%esp)		// x : y
-	fmulp			// x * y
+	fmuls	8(%esp)		// x * y
 	flds	12(%esp)	// z : x * y
 	faddp			// (x * y) + z
 	ret