blob: 221d1ac1a781da032c43c8c86c482cb164394687 [file] [log] [blame]
; RUN: llvm-as < %s | llc -march=xcore > %t1.s
; RUN: grep "bl sqrtf" %t1.s | count 1
; RUN: grep "bl sqrt" %t1.s | count 2
declare double @llvm.sqrt.f64(double)
define double @test(double %F) {
%result = call double @llvm.sqrt.f64(double %F)
ret double %result
}
declare float @llvm.sqrt.f32(float)
define float @testf(float %F) {
%result = call float @llvm.sqrt.f32(float %F)
ret float %result
}