[RISCV] Use RISCVSubtarget::is64Bit() instead of hasFeature(RISCV::Feature64Bit)...
[llvm-project.git] / clang / test / SemaHLSL / BuiltIns / half-float-only-errors2.hlsl
blobbfbd8b28257a3b9f75afd95218022a8c2e2372f8
1 // RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -emit-llvm-only -disable-llvm-passes -verify -DTEST_FUNC=__builtin_elementwise_atan2\r
2 // RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -emit-llvm-only -disable-llvm-passes -verify -DTEST_FUNC=__builtin_elementwise_fmod\r
3 // RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -emit-llvm-only -disable-llvm-passes -verify -DTEST_FUNC=__builtin_elementwise_pow\r
4 \r
5 double test_double_builtin(double p0, double p1) {\r
6     return TEST_FUNC(p0, p1);\r
7   // expected-error@-1 {{passing 'double' to parameter of incompatible type 'float'}}\r
8 }\r
9 \r
10 double2 test_vec_double_builtin(double2 p0, double2 p1) {\r
11     return TEST_FUNC(p0, p1);\r
12   // expected-error@-1 {{passing 'double2' (aka 'vector<double, 2>') to parameter of incompatible type '__attribute__((__vector_size__(2 * sizeof(float)))) float' (vector of 2 'float' values)}}\r
13 }\r