Remove VISIBILITY_HIDDEN from this file.
[llvm/avr.git] / test / CodeGen / XCore / exp.ll
blob8412e7a599564932838ffa016a40f96242476894
1 ; RUN: llvm-as < %s | llc -march=xcore > %t1.s
2 ; RUN: grep "bl expf" %t1.s | count 1
3 ; RUN: grep "bl exp" %t1.s | count 2
4 declare double @llvm.exp.f64(double)
6 define double @test(double %F) {
7         %result = call double @llvm.exp.f64(double %F)
8         ret double %result
11 declare float @llvm.exp.f32(float)
13 define float @testf(float %F) {
14         %result = call float @llvm.exp.f32(float %F)
15         ret float %result