[SLP] Add cost model for `llvm.powi.*` intrinsics
[llvm-project.git] / llvm / test / Transforms / InstCombine / fold-sqrt-sqrtf.ll
blob07c12a9eb57b3f0248995ca463a4209c101d268d
1 ; RUN: opt -passes=instcombine -S -disable-simplify-libcalls < %s | FileCheck %s
2 ; rdar://10466410
4 ; Instcombine tries to fold (fptrunc (sqrt (fpext x))) -> (sqrtf x), but this
5 ; shouldn't fold when sqrtf isn't available.
6 define float @foo(float %f) uwtable ssp {
7 entry:
8 ; CHECK: %conv = fpext float %f to double
9 ; CHECK: %call = tail call double @sqrt(double %conv)
10 ; CHECK: %conv1 = fptrunc double %call to float
11   %conv = fpext float %f to double
12   %call = tail call double @sqrt(double %conv)
13   %conv1 = fptrunc double %call to float
14   ret float %conv1
17 declare double @sqrt(double)