[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / clang / test / CodeGenHLSL / builtins / sin.hlsl
blob9f7fa5043bdc7d9b8a863c0b0765f5e7ee8be160
1 // RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.3-library %s \
2 // RUN:  -fnative-half-type -emit-llvm -disable-llvm-passes -o - | \
3 // RUN:  FileCheck %s --check-prefixes=CHECK,NATIVE_HALF
4 // RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.3-library %s \
5 // RUN:  -emit-llvm -disable-llvm-passes -o - | \
6 // RUN:  FileCheck %s --check-prefixes=CHECK,NO_HALF
8 // NATIVE_HALF-LABEL: define noundef half @_Z13test_sin_half
9 // NATIVE_HALF: call half @llvm.sin.f16(
10 // NO_HALF-LABEL: define noundef float @_Z13test_sin_half
11 // NO_HALF: call float @llvm.sin.f32(
12 half test_sin_half(half p0) { return sin(p0); }
13 // NATIVE_HALF-LABEL: define noundef <2 x half> @_Z14test_sin_half2
14 // NATIVE_HALF: call <2 x half> @llvm.sin.v2f16
15 // NO_HALF-LABEL: define noundef <2 x float> @_Z14test_sin_half2
16 // NO_HALF: call <2 x float> @llvm.sin.v2f32(
17 half2 test_sin_half2(half2 p0) { return sin(p0); }
18 // NATIVE_HALF-LABEL: define noundef <3 x half> @_Z14test_sin_half3
19 // NATIVE_HALF: call <3 x half> @llvm.sin.v3f16
20 // NO_HALF-LABEL: define noundef <3 x float> @_Z14test_sin_half3
21 // NO_HALF: call <3 x float> @llvm.sin.v3f32(
22 half3 test_sin_half3(half3 p0) { return sin(p0); }
23 // NATIVE_HALF-LABEL: define noundef <4 x half> @_Z14test_sin_half4
24 // NATIVE_HALF: call <4 x half> @llvm.sin.v4f16
25 // NO_HALF-LABEL: define noundef <4 x float> @_Z14test_sin_half4
26 // NO_HALF: call <4 x float> @llvm.sin.v4f32(
27 half4 test_sin_half4(half4 p0) { return sin(p0); }
29 // CHECK-LABEL: define noundef float @_Z14test_sin_float
30 // CHECK: call float @llvm.sin.f32(
31 float test_sin_float(float p0) { return sin(p0); }
32 // CHECK-LABEL: define noundef <2 x float> @_Z15test_sin_float2
33 // CHECK: call <2 x float> @llvm.sin.v2f32
34 float2 test_sin_float2(float2 p0) { return sin(p0); }
35 // CHECK-LABEL: define noundef <3 x float> @_Z15test_sin_float3
36 // CHECK: call <3 x float> @llvm.sin.v3f32
37 float3 test_sin_float3(float3 p0) { return sin(p0); }
38 // CHECK-LABEL: define noundef <4 x float> @_Z15test_sin_float4
39 // CHECK: call <4 x float> @llvm.sin.v4f32
40 float4 test_sin_float4(float4 p0) { return sin(p0); }