Author: joaosaffran
Date: 2026-01-29T10:48:45-08:00
New Revision: ddaf107e266f0539253b7d8173101eecef97a855

URL: 
https://github.com/llvm/llvm-project/commit/ddaf107e266f0539253b7d8173101eecef97a855
DIFF: 
https://github.com/llvm/llvm-project/commit/ddaf107e266f0539253b7d8173101eecef97a855.diff

LOG: [HLSL] Make log10, exp2, sinh overload tests stricter NFC (#177495)

This patch updates log10, exp2, sinh overload tests to use -O1 instead
of -disable-llvm-passes; also, the checks are updated to match the
change accordingly.

This work is part of https://github.com/llvm/llvm-project/issues/138016.

Added: 
    

Modified: 
    clang/test/CodeGenHLSL/builtins/exp2-overloads.hlsl
    clang/test/CodeGenHLSL/builtins/log10-overloads.hlsl
    clang/test/CodeGenHLSL/builtins/sinh-overloads.hlsl

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGenHLSL/builtins/exp2-overloads.hlsl 
b/clang/test/CodeGenHLSL/builtins/exp2-overloads.hlsl
index a8a6f3ba76b4f..362d5346c4079 100644
--- a/clang/test/CodeGenHLSL/builtins/exp2-overloads.hlsl
+++ b/clang/test/CodeGenHLSL/builtins/exp2-overloads.hlsl
@@ -1,88 +1,130 @@
 // RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -triple 
dxil-pc-shadermodel6.3-library %s \
-// RUN:  -emit-llvm -disable-llvm-passes -o - | \
-// RUN:  FileCheck %s --check-prefixes=CHECK
+// RUN:  -Wdeprecated-declarations -Wconversion -emit-llvm -o - | \
+// RUN:  FileCheck %s --check-prefixes=CHECK -DFNATTRS="hidden noundef 
nofpclass(nan inf)"
+// RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -triple 
dxil-pc-shadermodel6.3-library %s \
+// RUN:  -verify -verify-ignore-unexpected=note
 
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float 
{{.*}}test_exp2_double
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn float 
@llvm.exp2.f32(
-// CHECK: ret float [[EXP2]]
+// CHECK: define [[FNATTRS]] float @_Z16test_exp2_doubled(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} double %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.exp2.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x 64 bit API lowering for 
exp2 is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
 float test_exp2_double(double p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> 
{{.*}}test_exp2_double2
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> 
@llvm.exp2.v2f32
-// CHECK: ret <2 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <2 x float> @_Z17test_exp2_double2Dv2_d(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} <2 x double> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.exp2.v2f32(<2 x float> 
[[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x 64 bit API lowering for 
exp2 is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
 float2 test_exp2_double2(double2 p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> 
{{.*}}test_exp2_double3
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> 
@llvm.exp2.v3f32
-// CHECK: ret <3 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <3 x float> @_Z17test_exp2_double3Dv3_d(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} <3 x double> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.exp2.v3f32(<3 x float> 
[[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x 64 bit API lowering for 
exp2 is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
 float3 test_exp2_double3(double3 p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> 
{{.*}}test_exp2_double4
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> 
@llvm.exp2.v4f32
-// CHECK: ret <4 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <4 x float> @_Z17test_exp2_double4Dv4_d(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} <4 x double> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.exp2.v4f32(<4 x float> 
[[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x 64 bit API lowering for 
exp2 is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
 float4 test_exp2_double4(double4 p0) { return exp2(p0); }
 
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float 
{{.*}}test_exp2_int
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn float 
@llvm.exp2.f32(
-// CHECK: ret float [[EXP2]]
+// CHECK: define [[FNATTRS]] float @_Z13test_exp2_inti(
+// CHECK:    [[CONVI:%.*]] = sitofp i32 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.exp2.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float test_exp2_int(int p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> 
{{.*}}test_exp2_int2
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> 
@llvm.exp2.v2f32
-// CHECK: ret <2 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <2 x float> @_Z14test_exp2_int2Dv2_i(
+// CHECK:    [[CONVI:%.*]] = sitofp <2 x i32> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.exp2.v2f32(<2 x float> 
[[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float2 test_exp2_int2(int2 p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> 
{{.*}}test_exp2_int3
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> 
@llvm.exp2.v3f32
-// CHECK: ret <3 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <3 x float> @_Z14test_exp2_int3Dv3_i(
+// CHECK:    [[CONVI:%.*]] = sitofp <3 x i32> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.exp2.v3f32(<3 x float> 
[[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float3 test_exp2_int3(int3 p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> 
{{.*}}test_exp2_int4
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> 
@llvm.exp2.v4f32
-// CHECK: ret <4 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <4 x float> @_Z14test_exp2_int4Dv4_i(
+// CHECK:    [[CONVI:%.*]] = sitofp <4 x i32> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.exp2.v4f32(<4 x float> 
[[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float4 test_exp2_int4(int4 p0) { return exp2(p0); }
 
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float 
{{.*}}test_exp2_uint
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn float 
@llvm.exp2.f32(
-// CHECK: ret float [[EXP2]]
+// CHECK: define [[FNATTRS]] float @_Z14test_exp2_uintj(
+// CHECK:    [[CONVI:%.*]] = uitofp i32 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.exp2.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float test_exp2_uint(uint p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> 
{{.*}}test_exp2_uint2
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> 
@llvm.exp2.v2f32
-// CHECK: ret <2 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <2 x float> @_Z15test_exp2_uint2Dv2_j(
+// CHECK:    [[CONVI:%.*]] = uitofp <2 x i32> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.exp2.v2f32(<2 x float> 
[[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float2 test_exp2_uint2(uint2 p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> 
{{.*}}test_exp2_uint3
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> 
@llvm.exp2.v3f32
-// CHECK: ret <3 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <3 x float> @_Z15test_exp2_uint3Dv3_j(
+// CHECK:    [[CONVI:%.*]] = uitofp <3 x i32> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.exp2.v3f32(<3 x float> 
[[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float3 test_exp2_uint3(uint3 p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> 
{{.*}}test_exp2_uint4
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> 
@llvm.exp2.v4f32
-// CHECK: ret <4 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <4 x float> @_Z15test_exp2_uint4Dv4_j(
+// CHECK:    [[CONVI:%.*]] = uitofp <4 x i32> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.exp2.v4f32(<4 x float> 
[[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float4 test_exp2_uint4(uint4 p0) { return exp2(p0); }
 
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float 
{{.*}}test_exp2_int64_t
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn float 
@llvm.exp2.f32(
-// CHECK: ret float [[EXP2]]
+// CHECK: define [[FNATTRS]] float @_Z17test_exp2_int64_tl(
+// CHECK:    [[CONVI:%.*]] = sitofp i64 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.exp2.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float test_exp2_int64_t(int64_t p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> 
{{.*}}test_exp2_int64_t2
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> 
@llvm.exp2.v2f32
-// CHECK: ret <2 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <2 x float> @_Z18test_exp2_int64_t2Dv2_l(
+// CHECK:    [[CONVI:%.*]] = sitofp <2 x i64> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.exp2.v2f32(<2 x float> 
[[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float2 test_exp2_int64_t2(int64_t2 p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> 
{{.*}}test_exp2_int64_t3
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> 
@llvm.exp2.v3f32
-// CHECK: ret <3 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <3 x float> @_Z18test_exp2_int64_t3Dv3_l(
+// CHECK:    [[CONVI:%.*]] = sitofp <3 x i64> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.exp2.v3f32(<3 x float> 
[[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float3 test_exp2_int64_t3(int64_t3 p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> 
{{.*}}test_exp2_int64_t4
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> 
@llvm.exp2.v4f32
-// CHECK: ret <4 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <4 x float> @_Z18test_exp2_int64_t4Dv4_l(
+// CHECK:    [[CONVI:%.*]] = sitofp <4 x i64> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.exp2.v4f32(<4 x float> 
[[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float4 test_exp2_int64_t4(int64_t4 p0) { return exp2(p0); }
 
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float 
{{.*}}test_exp2_uint64_t
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn float 
@llvm.exp2.f32(
-// CHECK: ret float [[EXP2]]
+// CHECK: define [[FNATTRS]] float @_Z18test_exp2_uint64_tm(
+// CHECK:    [[CONVI:%.*]] = uitofp i64 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.exp2.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float test_exp2_uint64_t(uint64_t p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> 
{{.*}}test_exp2_uint64_t2
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <2 x float> 
@llvm.exp2.v2f32
-// CHECK: ret <2 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <2 x float> @_Z19test_exp2_uint64_t2Dv2_m(
+// CHECK:    [[CONVI:%.*]] = uitofp <2 x i64> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.exp2.v2f32(<2 x float> 
[[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float2 test_exp2_uint64_t2(uint64_t2 p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> 
{{.*}}test_exp2_uint64_t3
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <3 x float> 
@llvm.exp2.v3f32
-// CHECK: ret <3 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <3 x float> @_Z19test_exp2_uint64_t3Dv3_m(
+// CHECK:    [[CONVI:%.*]] = uitofp <3 x i64> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.exp2.v3f32(<3 x float> 
[[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float3 test_exp2_uint64_t3(uint64_t3 p0) { return exp2(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> 
{{.*}}test_exp2_uint64_t4
-// CHECK: [[EXP2:%.*]] = call reassoc nnan ninf nsz arcp afn <4 x float> 
@llvm.exp2.v4f32
-// CHECK: ret <4 x float> [[EXP2]]
+// CHECK: define [[FNATTRS]] <4 x float> @_Z19test_exp2_uint64_t4Dv4_m(
+// CHECK:    [[CONVI:%.*]] = uitofp <4 x i64> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.exp2.v4f32(<4 x float> 
[[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
+// expected-warning@+1 {{'exp2' is deprecated: In 202x int lowering for exp2 
is deprecated. Explicitly cast parameters to float types.}}
 float4 test_exp2_uint64_t4(uint64_t4 p0) { return exp2(p0); }

diff  --git a/clang/test/CodeGenHLSL/builtins/log10-overloads.hlsl 
b/clang/test/CodeGenHLSL/builtins/log10-overloads.hlsl
index e408f4a5d45ce..fa5bcadce5ed9 100644
--- a/clang/test/CodeGenHLSL/builtins/log10-overloads.hlsl
+++ b/clang/test/CodeGenHLSL/builtins/log10-overloads.hlsl
@@ -1,68 +1,130 @@
 // RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -triple 
dxil-pc-shadermodel6.3-library %s \
-// RUN:  -emit-llvm -disable-llvm-passes -o - | \
-// RUN:  FileCheck %s --check-prefixes=CHECK
+// RUN:  -Wdeprecated-declarations -Wconversion -emit-llvm -o - | \
+// RUN:  FileCheck %s --check-prefixes=CHECK -DFNATTRS="hidden noundef 
nofpclass(nan inf)"
+// RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -triple 
dxil-pc-shadermodel6.3-library %s \
+// RUN:  -verify -verify-ignore-unexpected=note
 
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float 
{{.*}}test_log10_double
-// CHECK: call reassoc nnan ninf nsz arcp afn float @llvm.log10.f32(
+// CHECK: define [[FNATTRS]] float @_Z17test_log10_doubled(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} double %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.log10.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x 64 bit API lowering 
for log10 is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
 float test_log10_double(double p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> 
{{.*}}test_log10_double2
-// CHECK: call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.log10.v2f32
+// CHECK: define [[FNATTRS]] <2 x float> @_Z18test_log10_double2Dv2_d(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} <2 x double> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.log10.v2f32(<2 x 
float> [[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x 64 bit API lowering 
for log10 is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
 float2 test_log10_double2(double2 p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> 
{{.*}}test_log10_double3
-// CHECK: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.log10.v3f32
+// CHECK: define [[FNATTRS]] <3 x float> @_Z18test_log10_double3Dv3_d(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} <3 x double> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.log10.v3f32(<3 x 
float> [[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x 64 bit API lowering 
for log10 is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
 float3 test_log10_double3(double3 p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> 
{{.*}}test_log10_double4
-// CHECK: call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.log10.v4f32
+// CHECK: define [[FNATTRS]] <4 x float> @_Z18test_log10_double4Dv4_d(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} <4 x double> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.log10.v4f32(<4 x 
float> [[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x 64 bit API lowering 
for log10 is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
 float4 test_log10_double4(double4 p0) { return log10(p0); }
 
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float 
{{.*}}test_log10_int
-// CHECK: call reassoc nnan ninf nsz arcp afn float @llvm.log10.f32(
+// CHECK: define [[FNATTRS]] float @_Z14test_log10_inti(
+// CHECK:    [[CONVI:%.*]] = sitofp i32 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.log10.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float test_log10_int(int p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> 
{{.*}}test_log10_int2
-// CHECK: call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.log10.v2f32
+// CHECK: define [[FNATTRS]] <2 x float> @_Z15test_log10_int2Dv2_i(
+// CHECK:    [[CONVI:%.*]] = sitofp <2 x i32> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.log10.v2f32(<2 x 
float> [[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float2 test_log10_int2(int2 p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> 
{{.*}}test_log10_int3
-// CHECK: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.log10.v3f32
+// CHECK: define [[FNATTRS]] <3 x float> @_Z15test_log10_int3Dv3_i(
+// CHECK:    [[CONVI:%.*]] = sitofp <3 x i32> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.log10.v3f32(<3 x 
float> [[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float3 test_log10_int3(int3 p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> 
{{.*}}test_log10_int4
-// CHECK: call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.log10.v4f32
+// CHECK: define [[FNATTRS]] <4 x float> @_Z15test_log10_int4Dv4_i(
+// CHECK:    [[CONVI:%.*]] = sitofp <4 x i32> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.log10.v4f32(<4 x 
float> [[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float4 test_log10_int4(int4 p0) { return log10(p0); }
 
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float 
{{.*}}test_log10_uint
-// CHECK: call reassoc nnan ninf nsz arcp afn float @llvm.log10.f32(
+// CHECK: define [[FNATTRS]] float @_Z15test_log10_uintj(
+// CHECK:    [[CONVI:%.*]] = uitofp i32 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.log10.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float test_log10_uint(uint p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> 
{{.*}}test_log10_uint2
-// CHECK: call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.log10.v2f32
+// CHECK: define [[FNATTRS]] <2 x float> @_Z16test_log10_uint2Dv2_j(
+// CHECK:    [[CONVI:%.*]] = uitofp <2 x i32> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.log10.v2f32(<2 x 
float> [[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float2 test_log10_uint2(uint2 p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> 
{{.*}}test_log10_uint3
-// CHECK: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.log10.v3f32
+// CHECK: define [[FNATTRS]] <3 x float> @_Z16test_log10_uint3Dv3_j(
+// CHECK:    [[CONVI:%.*]] = uitofp <3 x i32> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.log10.v3f32(<3 x 
float> [[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float3 test_log10_uint3(uint3 p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> 
{{.*}}test_log10_uint4
-// CHECK: call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.log10.v4f32
+// CHECK: define [[FNATTRS]] <4 x float> @_Z16test_log10_uint4Dv4_j(
+// CHECK:    [[CONVI:%.*]] = uitofp <4 x i32> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.log10.v4f32(<4 x 
float> [[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float4 test_log10_uint4(uint4 p0) { return log10(p0); }
 
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float 
{{.*}}test_log10_int64_t
-// CHECK: call reassoc nnan ninf nsz arcp afn float @llvm.log10.f32(
+// CHECK: define [[FNATTRS]] float @_Z18test_log10_int64_tl(
+// CHECK:    [[CONVI:%.*]] = sitofp i64 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.log10.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float test_log10_int64_t(int64_t p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> 
{{.*}}test_log10_int64_t2
-// CHECK: call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.log10.v2f32
+// CHECK: define [[FNATTRS]] <2 x float> @_Z19test_log10_int64_t2Dv2_l(
+// CHECK:    [[CONVI:%.*]] = sitofp <2 x i64> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.log10.v2f32(<2 x 
float> [[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float2 test_log10_int64_t2(int64_t2 p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> 
{{.*}}test_log10_int64_t3
-// CHECK: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.log10.v3f32
+// CHECK: define [[FNATTRS]] <3 x float> @_Z19test_log10_int64_t3Dv3_l(
+// CHECK:    [[CONVI:%.*]] = sitofp <3 x i64> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.log10.v3f32(<3 x 
float> [[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float3 test_log10_int64_t3(int64_t3 p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> 
{{.*}}test_log10_int64_t4
-// CHECK: call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.log10.v4f32
+// CHECK: define [[FNATTRS]] <4 x float> @_Z19test_log10_int64_t4Dv4_l(
+// CHECK:    [[CONVI:%.*]] = sitofp <4 x i64> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.log10.v4f32(<4 x 
float> [[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float4 test_log10_int64_t4(int64_t4 p0) { return log10(p0); }
 
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) float 
{{.*}}test_log10_uint64_t
-// CHECK: call reassoc nnan ninf nsz arcp afn float @llvm.log10.f32(
+// CHECK: define [[FNATTRS]] float @_Z19test_log10_uint64_tm(
+// CHECK:    [[CONVI:%.*]] = uitofp i64 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.log10.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float test_log10_uint64_t(uint64_t p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <2 x float> 
{{.*}}test_log10_uint64_t2
-// CHECK: call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.log10.v2f32
+// CHECK: define [[FNATTRS]] <2 x float> @_Z20test_log10_uint64_t2Dv2_m(
+// CHECK:    [[CONVI:%.*]] = uitofp <2 x i64> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.log10.v2f32(<2 x 
float> [[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float2 test_log10_uint64_t2(uint64_t2 p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <3 x float> 
{{.*}}test_log10_uint64_t3
-// CHECK: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.log10.v3f32
+// CHECK: define [[FNATTRS]] <3 x float> @_Z20test_log10_uint64_t3Dv3_m(
+// CHECK:    [[CONVI:%.*]] = uitofp <3 x i64> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.log10.v3f32(<3 x 
float> [[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float3 test_log10_uint64_t3(uint64_t3 p0) { return log10(p0); }
-// CHECK-LABEL: define hidden noundef nofpclass(nan inf) <4 x float> 
{{.*}}test_log10_uint64_t4
-// CHECK: call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.log10.v4f32
+// CHECK: define [[FNATTRS]] <4 x float> @_Z20test_log10_uint64_t4Dv4_m(
+// CHECK:    [[CONVI:%.*]] = uitofp <4 x i64> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.log10.v4f32(<4 x 
float> [[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
+// expected-warning@+1 {{'log10' is deprecated: In 202x int lowering for log10 
is deprecated. Explicitly cast parameters to float types.}}
 float4 test_log10_uint64_t4(uint64_t4 p0) { return log10(p0); }

diff  --git a/clang/test/CodeGenHLSL/builtins/sinh-overloads.hlsl 
b/clang/test/CodeGenHLSL/builtins/sinh-overloads.hlsl
index 64ff8a69d4eec..6db821faf468d 100644
--- a/clang/test/CodeGenHLSL/builtins/sinh-overloads.hlsl
+++ b/clang/test/CodeGenHLSL/builtins/sinh-overloads.hlsl
@@ -1,123 +1,185 @@
-// RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -x hlsl -triple \
-// RUN:   spirv-unknown-vulkan-compute %s -emit-llvm -disable-llvm-passes \
-// RUN:   -o - | FileCheck %s --check-prefixes=CHECK
-
-// CHECK-LABEL: test_sinh_double
-// CHECK: call reassoc nnan ninf nsz arcp afn float @llvm.sinh.f32
+// RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -triple 
dxil-pc-shadermodel6.3-library %s \
+// RUN:  -Wdeprecated-declarations -Wconversion -emit-llvm -o - | \
+// RUN:  FileCheck %s --check-prefixes=CHECK -DFNATTRS="hidden noundef 
nofpclass(nan inf)"
+// RUN: %clang_cc1 -std=hlsl202x -finclude-default-header -triple 
dxil-pc-shadermodel6.3-library %s \
+// RUN:  -verify -verify-ignore-unexpected=note
+
+// CHECK: define [[FNATTRS]] float @_Z16test_sinh_doubled(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} double %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.sinh.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
 float test_sinh_double ( double p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x 64 bit API lowering for 
sinh is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_double2
-// CHECK: call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.sinh.v2f32
+// CHECK: define [[FNATTRS]] <2 x float> @_Z17test_sinh_double2Dv2_d(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} <2 x double> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.sinh.v2f32(<2 x float> 
[[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
 float2 test_sinh_double2 ( double2 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x 64 bit API lowering for 
sinh is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_double3
-// CHECK: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.sinh.v3f32
+// CHECK: define [[FNATTRS]] <3 x float> @_Z17test_sinh_double3Dv3_d(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} <3 x double> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.sinh.v3f32(<3 x float> 
[[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
 float3 test_sinh_double3 ( double3 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x 64 bit API lowering for 
sinh is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_double4
-// CHECK: call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.sinh.v4f32
+// CHECK: define [[FNATTRS]] <4 x float> @_Z17test_sinh_double4Dv4_d(
+// CHECK:    [[CONVI:%.*]] = fptrunc {{.*}} <4 x double> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.sinh.v4f32(<4 x float> 
[[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
 float4 test_sinh_double4 ( double4 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x 64 bit API lowering for 
sinh is deprecated. Explicitly cast parameters to 32 or 16 bit types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_int
-// CHECK: call reassoc nnan ninf nsz arcp afn float @llvm.sinh.f32
+// CHECK: define [[FNATTRS]] float @_Z13test_sinh_inti(
+// CHECK:    [[CONVI:%.*]] = sitofp i32 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.sinh.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
 float test_sinh_int ( int p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_int2
-// CHECK: call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.sinh.v2f32
+// CHECK: define [[FNATTRS]] <2 x float> @_Z14test_sinh_int2Dv2_i(
+// CHECK:    [[CONVI:%.*]] = sitofp <2 x i32> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.sinh.v2f32(<2 x float> 
[[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
 float2 test_sinh_int2 ( int2 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_int3
-// CHECK: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.sinh.v3f32
+// CHECK: define [[FNATTRS]] <3 x float> @_Z14test_sinh_int3Dv3_i(
+// CHECK:    [[CONVI:%.*]] = sitofp <3 x i32> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.sinh.v3f32(<3 x float> 
[[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
 float3 test_sinh_int3 ( int3 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_int4
-// CHECK: call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.sinh.v4f32
+// CHECK: define [[FNATTRS]] <4 x float> @_Z14test_sinh_int4Dv4_i(
+// CHECK:    [[CONVI:%.*]] = sitofp <4 x i32> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.sinh.v4f32(<4 x float> 
[[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
 float4 test_sinh_int4 ( int4 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_uint
-// CHECK: call reassoc nnan ninf nsz arcp afn float @llvm.sinh.f32
+// CHECK: define [[FNATTRS]] float @_Z14test_sinh_uintj(
+// CHECK:    [[CONVI:%.*]] = uitofp i32 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.sinh.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
 float test_sinh_uint ( uint p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_uint2
-// CHECK: call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.sinh.v2f32
+// CHECK: define [[FNATTRS]] <2 x float> @_Z15test_sinh_uint2Dv2_j(
+// CHECK:    [[CONVI:%.*]] = uitofp <2 x i32> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.sinh.v2f32(<2 x float> 
[[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
 float2 test_sinh_uint2 ( uint2 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_uint3
-// CHECK: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.sinh.v3f32
+// CHECK: define [[FNATTRS]] <3 x float> @_Z15test_sinh_uint3Dv3_j(
+// CHECK:    [[CONVI:%.*]] = uitofp <3 x i32> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.sinh.v3f32(<3 x float> 
[[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
 float3 test_sinh_uint3 ( uint3 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_uint4
-// CHECK: call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.sinh.v4f32
+// CHECK: define [[FNATTRS]] <4 x float> @_Z15test_sinh_uint4Dv4_j(
+// CHECK:    [[CONVI:%.*]] = uitofp <4 x i32> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.sinh.v4f32(<4 x float> 
[[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
 float4 test_sinh_uint4 ( uint4 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_int64_t
-// CHECK: call reassoc nnan ninf nsz arcp afn float @llvm.sinh.f32
+// CHECK: define [[FNATTRS]] float @_Z17test_sinh_int64_tl(
+// CHECK:    [[CONVI:%.*]] = sitofp i64 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.sinh.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
 float test_sinh_int64_t ( int64_t p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_int64_t2
-// CHECK: call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.sinh.v2f32
+// CHECK: define [[FNATTRS]] <2 x float> @_Z18test_sinh_int64_t2Dv2_l(
+// CHECK:    [[CONVI:%.*]] = sitofp <2 x i64> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.sinh.v2f32(<2 x float> 
[[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
 float2 test_sinh_int64_t2 ( int64_t2 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_int64_t3
-// CHECK: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.sinh.v3f32
+// CHECK: define [[FNATTRS]] <3 x float> @_Z18test_sinh_int64_t3Dv3_l(
+// CHECK:    [[CONVI:%.*]] = sitofp <3 x i64> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.sinh.v3f32(<3 x float> 
[[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
 float3 test_sinh_int64_t3 ( int64_t3 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_int64_t4
-// CHECK: call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.sinh.v4f32
+// CHECK: define [[FNATTRS]] <4 x float> @_Z18test_sinh_int64_t4Dv4_l(
+// CHECK:    [[CONVI:%.*]] = sitofp <4 x i64> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.sinh.v4f32(<4 x float> 
[[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
 float4 test_sinh_int64_t4 ( int64_t4 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_uint64_t
-// CHECK: call reassoc nnan ninf nsz arcp afn float @llvm.sinh.f32
+// CHECK: define [[FNATTRS]] float @_Z18test_sinh_uint64_tm(
+// CHECK:    [[CONVI:%.*]] = uitofp i64 %{{.*}} to float
+// CHECK:    [[V2:%.*]] = call {{.*}} float @llvm.sinh.f32(float [[CONVI]])
+// CHECK:    ret float [[V2]]
 float test_sinh_uint64_t ( uint64_t p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_uint64_t2
-// CHECK: call reassoc nnan ninf nsz arcp afn <2 x float> @llvm.sinh.v2f32
+// CHECK: define [[FNATTRS]] <2 x float> @_Z19test_sinh_uint64_t2Dv2_m(
+// CHECK:    [[CONVI:%.*]] = uitofp <2 x i64> %{{.*}} to <2 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <2 x float> @llvm.sinh.v2f32(<2 x float> 
[[CONVI]])
+// CHECK:    ret <2 x float> [[V2]]
 float2 test_sinh_uint64_t2 ( uint64_t2 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_uint64_t3
-// CHECK: call reassoc nnan ninf nsz arcp afn <3 x float> @llvm.sinh.v3f32
+// CHECK: define [[FNATTRS]] <3 x float> @_Z19test_sinh_uint64_t3Dv3_m(
+// CHECK:    [[CONVI:%.*]] = uitofp <3 x i64> %{{.*}} to <3 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <3 x float> @llvm.sinh.v3f32(<3 x float> 
[[CONVI]])
+// CHECK:    ret <3 x float> [[V2]]
 float3 test_sinh_uint64_t3 ( uint64_t3 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }
 
-// CHECK-LABEL: test_sinh_uint64_t4
-// CHECK: call reassoc nnan ninf nsz arcp afn <4 x float> @llvm.sinh.v4f32
+// CHECK: define [[FNATTRS]] <4 x float> @_Z19test_sinh_uint64_t4Dv4_m(
+// CHECK:    [[CONVI:%.*]] = uitofp <4 x i64> %{{.*}} to <4 x float>
+// CHECK:    [[V2:%.*]] = call {{.*}} <4 x float> @llvm.sinh.v4f32(<4 x float> 
[[CONVI]])
+// CHECK:    ret <4 x float> [[V2]]
 float4 test_sinh_uint64_t4 ( uint64_t4 p0 ) {
+// expected-warning@+1 {{'sinh' is deprecated: In 202x int lowering for sinh 
is deprecated. Explicitly cast parameters to float types.}}
   return sinh ( p0 );
 }


        
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to