Fixed some bugs in register stack pass.
[llvm/zpu.git] / test / CodeGen / X86 / negative-sin.ll
blob7842eb8456eb4e39f0b43fa301621307d71c765b
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) readonly
10   %h = fsub double 0.0, %g
11   ret double %h