In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / CodeGen / XCore / sin.ll
blob41aab675953f22fe4333665995d78d1f4177f13b
1 ; RUN: llvm-as < %s | llc -march=xcore > %t1.s
2 ; RUN: grep "bl sinf" %t1.s | count 1
3 ; RUN: grep "bl sin" %t1.s | count 2
4 declare double @llvm.sin.f64(double)
6 define double @test(double %F) {
7         %result = call double @llvm.sin.f64(double %F)
8         ret double %result
11 declare float @llvm.sin.f32(float)
13 define float @testf(float %F) {
14         %result = call float @llvm.sin.f32(float %F)
15         ret float %result