Make test more lenient for custom clang version strings
[llvm-project.git] / clang / test / CodeGenHLSL / builtins / radians.hlsl
blob774300525dbf021663d5074ff47ce0b9781d4545
1 // RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \
2 // RUN:   dxil-pc-shadermodel6.3-library %s -fnative-half-type \
3 // RUN:   -emit-llvm -disable-llvm-passes -o - | FileCheck %s \ 
4 // RUN:   --check-prefixes=CHECK,NATIVE_HALF \
5 // RUN:   -DTARGET=dx -DFNATTRS=noundef
6 // RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \
7 // RUN:   dxil-pc-shadermodel6.3-library %s -emit-llvm -disable-llvm-passes \
8 // RUN:   -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF \
9 // RUN:   -DTARGET=dx -DFNATTRS=noundef
10 // RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \
11 // RUN:   spirv-unknown-vulkan-compute %s -fnative-half-type \
12 // RUN:   -emit-llvm -disable-llvm-passes -o - | FileCheck %s \
13 // RUN:   --check-prefixes=CHECK,NATIVE_HALF \
14 // RUN:   -DTARGET=spv -DFNATTRS="spir_func noundef"
15 // RUN: %clang_cc1 -finclude-default-header -x hlsl -triple \
16 // RUN:   spirv-unknown-vulkan-compute %s -emit-llvm -disable-llvm-passes \
17 // RUN:   -o - | FileCheck %s --check-prefixes=CHECK,NO_HALF \
18 // RUN:   -DTARGET=spv -DFNATTRS="spir_func noundef"
21 // NATIVE_HALF: define [[FNATTRS]] half @
22 // NATIVE_HALF: %{{.*}} = call half @llvm.[[TARGET]].radians.f16(
23 // NATIVE_HALF: ret half %{{.*}}
24 // NO_HALF: define [[FNATTRS]] float @
25 // NO_HALF: %{{.*}} = call float @llvm.[[TARGET]].radians.f32(
26 // NO_HALF: ret float %{{.*}}
27 half test_radians_half(half p0) { return radians(p0); }
28 // NATIVE_HALF: define [[FNATTRS]] <2 x half> @
29 // NATIVE_HALF: %{{.*}} = call <2 x half> @llvm.[[TARGET]].radians.v2f16
30 // NATIVE_HALF: ret <2 x half> %{{.*}}
31 // NO_HALF: define [[FNATTRS]] <2 x float> @
32 // NO_HALF: %{{.*}} = call <2 x float> @llvm.[[TARGET]].radians.v2f32(
33 // NO_HALF: ret <2 x float> %{{.*}}
34 half2 test_radians_half2(half2 p0) { return radians(p0); }
35 // NATIVE_HALF: define [[FNATTRS]] <3 x half> @
36 // NATIVE_HALF: %{{.*}} = call <3 x half> @llvm.[[TARGET]].radians.v3f16
37 // NATIVE_HALF: ret <3 x half> %{{.*}}
38 // NO_HALF: define [[FNATTRS]] <3 x float> @
39 // NO_HALF: %{{.*}} = call <3 x float> @llvm.[[TARGET]].radians.v3f32(
40 // NO_HALF: ret <3 x float> %{{.*}}
41 half3 test_radians_half3(half3 p0) { return radians(p0); }
42 // NATIVE_HALF: define [[FNATTRS]] <4 x half> @
43 // NATIVE_HALF: %{{.*}} = call <4 x half> @llvm.[[TARGET]].radians.v4f16
44 // NATIVE_HALF: ret <4 x half> %{{.*}}
45 // NO_HALF: define [[FNATTRS]] <4 x float> @
46 // NO_HALF: %{{.*}} = call <4 x float> @llvm.[[TARGET]].radians.v4f32(
47 // NO_HALF: ret <4 x float> %{{.*}}
48 half4 test_radians_half4(half4 p0) { return radians(p0); }
50 // CHECK: define [[FNATTRS]] float @
51 // CHECK: %{{.*}} = call float @llvm.[[TARGET]].radians.f32(
52 // CHECK: ret float %{{.*}}
53 float test_radians_float(float p0) { return radians(p0); }
54 // CHECK: define [[FNATTRS]] <2 x float> @
55 // CHECK: %{{.*}} = call <2 x float> @llvm.[[TARGET]].radians.v2f32
56 // CHECK: ret <2 x float> %{{.*}}
57 float2 test_radians_float2(float2 p0) { return radians(p0); }
58 // CHECK: define [[FNATTRS]] <3 x float> @
59 // CHECK: %{{.*}} = call <3 x float> @llvm.[[TARGET]].radians.v3f32
60 // CHECK: ret <3 x float> %{{.*}}
61 float3 test_radians_float3(float3 p0) { return radians(p0); }
62 // CHECK: define [[FNATTRS]] <4 x float> @
63 // CHECK: %{{.*}} = call <4 x float> @llvm.[[TARGET]].radians.v4f32
64 // CHECK: ret <4 x float> %{{.*}}
65 float4 test_radians_float4(float4 p0) { return radians(p0); }