Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / InstCombine / pow-to-sqrt.ll
blob2805456c89e821af424e2a94ec7165536f7d2edd
1 ; RUN: opt < %s -passes=instcombine -S | FileCheck %s
2 ; This is a check to assure the attributes of `pow` do
3 ; not get passed to sqrt.
5 define void @pow_to_sqrt(double %x) {
6 ; CHECK-LABEL: @pow_to_sqrt(
7 ; CHECK-NEXT: [[SQRT:%.*]] = call afn double @sqrt(double [[X:%.*]])
8 ; CHECK-NEXT: ret void
10   %call = call afn double @pow(double %x, double 1.5)
11   ret void
14 declare double @pow(double noundef, double noundef)