revert a hunk of r82018 that wasn't supposed to go in yet.
[llvm/avr.git] / test / CodeGen / X86 / negative-sin.ll
blob189c43c74b08291f65dfee82bf846f37f2b240cb
1 ; RUN: llc < %s -enable-unsafe-fp-math -march=x86-64 | \
2 ; RUN:   not egrep {addsd|subsd|xor}
4 declare double @sin(double %f)
6 define double @foo(double %e)
8   %f = fsub double 0.0, %e
9   %g = call double @sin(double %f)
10   %h = fsub double 0.0, %g
11   ret double %h