Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenHLSL / builtins / sqrt.hlsl
blob776269395a662b44aa36b4a8b58b8b372fe37477
1 // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \
2 // RUN:   dxil-pc-shadermodel6.2-library %s -fnative-half-type \
3 // RUN:   -emit-llvm -disable-llvm-passes -o - | FileCheck %s
4 // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \
5 // RUN:   dxil-pc-shadermodel6.2-library %s -emit-llvm -disable-llvm-passes \
6 // RUN:   -o - | FileCheck %s --check-prefix=NO_HALF
8 using hlsl::sqrt;
10 double sqrt_d(double x)
12   return sqrt(x);
15 // CHECK: define noundef double @"?sqrt_d@@YANN@Z"(
16 // CHECK: call double @llvm.sqrt.f64(double %0)
18 float sqrt_f(float x)
20   return sqrt(x);
23 // CHECK: define noundef float @"?sqrt_f@@YAMM@Z"(
24 // CHECK: call float @llvm.sqrt.f32(float %0)
26 half sqrt_h(half x)
28   return sqrt(x);
31 // CHECK: define noundef half @"?sqrt_h@@YA$f16@$f16@@Z"(
32 // CHECK: call half @llvm.sqrt.f16(half %0)
33 // NO_HALF: define noundef float @"?sqrt_h@@YA$halff@$halff@@Z"(
34 // NO_HALF: call float @llvm.sqrt.f32(float %0)