aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/negative-sin.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/negative-sin.ll')
-rw-r--r--test/CodeGen/X86/negative-sin.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/negative-sin.ll b/test/CodeGen/X86/negative-sin.ll
index 39c62973de..8cc1bec2d1 100644
--- a/test/CodeGen/X86/negative-sin.ll
+++ b/test/CodeGen/X86/negative-sin.ll
@@ -5,8 +5,8 @@ declare double @sin(double %f)
define double @foo(double %e)
{
- %f = sub double 0.0, %e
+ %f = fsub double 0.0, %e
%g = call double @sin(double %f)
- %h = sub double 0.0, %g
+ %h = fsub double 0.0, %g
ret double %h
}