[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / PartiallyInlineLibCalls / strictfp.ll
blobb4c5f605e6769c385f825320eea2ee37fea76c20
1 ; RUN: opt -S -partially-inline-libcalls -mtriple=x86_64-unknown-linux-gnu < %s | FileCheck %s
2 ; RUN: opt -S -passes=partially-inline-libcalls -mtriple=x86_64-unknown-linux-gnu < %s | FileCheck %s
4 define float @f(float %val) strictfp {
5 ; CHECK-LABEL: @f
6 ; CHECK: call{{.*}}@sqrtf
7 ; CHECK-NOT: call{{.*}}@sqrtf
8   %res = tail call float @sqrtf(float %val) strictfp
9   ret float %res
12 declare float @sqrtf(float)