Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenHLSL / builtins / cos.hlsl
blobe05c0cfee3475351138eb19914e807d672fa66c2
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.cos.f16(\r
10 // NO_HALF: define noundef float @"?test_cos_half@@YA$halff@$halff@@Z"(\r
11 // NO_HALF: call float @llvm.cos.f32(\r
12 half test_cos_half ( half p0 ) {\r
13   return cos ( p0 );\r
14 }\r
15 // CHECK: define noundef <2 x half> @\r
16 // CHECK: call <2 x half> @llvm.cos.v2f16\r
17 // NO_HALF: define noundef <2 x float> @"?test_cos_float2@@YAT?$__vector@M$01@__clang@@T12@@Z"(\r
18 // NO_HALF: call <2 x float> @llvm.cos.v2f32(\r
19 half2 test_cos_half2 ( half2 p0 ) {\r
20   return cos ( p0 );\r
21 }\r
22 // CHECK: define noundef <3 x half> @\r
23 // CHECK: call <3 x half> @llvm.cos.v3f16\r
24 // NO_HALF: define noundef <3 x float> @"?test_cos_float3@@YAT?$__vector@M$02@__clang@@T12@@Z"(\r
25 // NO_HALF: call <3 x float> @llvm.cos.v3f32(\r
26 half3 test_cos_half3 ( half3 p0 ) {\r
27   return cos ( p0 );\r
28 }\r
29 // CHECK: define noundef <4 x half> @\r
30 // CHECK: call <4 x half> @llvm.cos.v4f16\r
31 // NO_HALF: define noundef <4 x float> @"?test_cos_float4@@YAT?$__vector@M$03@__clang@@T12@@Z"(\r
32 // NO_HALF: call <4 x float> @llvm.cos.v4f32(\r
33 half4 test_cos_half4 ( half4 p0 ) {\r
34   return cos ( p0 );\r
35 }\r
37 // CHECK: define noundef float @\r
38 // CHECK: call float @llvm.cos.f32(\r
39 float test_cos_float ( float p0 ) {\r
40   return cos ( p0 );\r
41 }\r
42 // CHECK: define noundef <2 x float> @\r
43 // CHECK: call <2 x float> @llvm.cos.v2f32\r
44 float2 test_cos_float2 ( float2 p0 ) {\r
45   return cos ( p0 );\r
46 }\r
47 // CHECK: define noundef <3 x float> @\r
48 // CHECK: call <3 x float> @llvm.cos.v3f32\r
49 float3 test_cos_float3 ( float3 p0 ) {\r
50   return cos ( p0 );\r
51 }\r
52 // CHECK: define noundef <4 x float> @\r
53 // CHECK: call <4 x float> @llvm.cos.v4f32\r
54 float4 test_cos_float4 ( float4 p0 ) {\r
55   return cos ( p0 );\r
56 }\r