Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenHLSL / builtins / log10.hlsl
blob8b2bd26242cf729c3614afe3560f297dcc6b68ea
1 // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \
2 // RUN:   dxil-pc-shadermodel6.3-library %s -fnative-half-type \
3 // RUN:   -emit-llvm -disable-llvm-passes -O3 -o - | FileCheck %s
4 // RUN: %clang_cc1 -std=hlsl2021 -finclude-default-header -x hlsl -triple \
5 // RUN:   dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \
6 // RUN:   -D__HLSL_ENABLE_16_BIT -o - | FileCheck %s --check-prefix=NO_HALF
8 // CHECK: define noundef half @
9 // CHECK: call half @llvm.log10.f16(
10 // NO_HALF: define noundef float @"?test_log10_half@@YA$halff@$halff@@Z"(
11 // NO_HALF: call float @llvm.log10.f32(
12 half test_log10_half ( half p0 ) {
13   return log10 ( p0 );
15 // CHECK: define noundef <2 x half> @
16 // CHECK: call <2 x half> @llvm.log10.v2f16
17 // NO_HALF: define noundef <2 x float> @"?test_log10_float2@@YAT?$__vector@M$01@__clang@@T12@@Z"(
18 // NO_HALF: call <2 x float> @llvm.log10.v2f32(
19 half2 test_log10_half2 ( half2 p0 ) {
20   return log10 ( p0 );
22 // CHECK: define noundef <3 x half> @
23 // CHECK: call <3 x half> @llvm.log10.v3f16
24 // NO_HALF: define noundef <3 x float> @"?test_log10_float3@@YAT?$__vector@M$02@__clang@@T12@@Z"(
25 // NO_HALF: call <3 x float> @llvm.log10.v3f32(
26 half3 test_log10_half3 ( half3 p0 ) {
27   return log10 ( p0 );
29 // CHECK: define noundef <4 x half> @
30 // CHECK: call <4 x half> @llvm.log10.v4f16
31 // NO_HALF: define noundef <4 x float> @"?test_log10_float4@@YAT?$__vector@M$03@__clang@@T12@@Z"(
32 // NO_HALF: call <4 x float> @llvm.log10.v4f32(
33 half4 test_log10_half4 ( half4 p0 ) {
34   return log10 ( p0 );
37 // CHECK: define noundef float @
38 // CHECK: call float @llvm.log10.f32(
39 float test_log10_float ( float p0 ) {
40   return log10 ( p0 );
42 // CHECK: define noundef <2 x float> @
43 // CHECK: call <2 x float> @llvm.log10.v2f32
44 float2 test_log10_float2 ( float2 p0 ) {
45   return log10 ( p0 );
47 // CHECK: define noundef <3 x float> @
48 // CHECK: call <3 x float> @llvm.log10.v3f32
49 float3 test_log10_float3 ( float3 p0 ) {
50   return log10 ( p0 );
52 // CHECK: define noundef <4 x float> @
53 // CHECK: call <4 x float> @llvm.log10.v4f32
54 float4 test_log10_float4 ( float4 p0 ) {
55   return log10 ( p0 );