Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Transforms / PartiallyInlineLibCalls / strictfp.ll
blob8d18d1969b04d36d196f3cea45fe49f698401ea7
1 ; RUN: opt -S -passes=partially-inline-libcalls -mtriple=x86_64-unknown-linux-gnu < %s | FileCheck %s
3 define float @f(float %val) strictfp {
4 ; CHECK-LABEL: @f
5 ; CHECK: call{{.*}}@sqrtf
6 ; CHECK-NOT: call{{.*}}@sqrtf
7   %res = tail call float @sqrtf(float %val) strictfp
8   ret float %res
11 declare float @sqrtf(float)