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