17 lines · plain
1// RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -fnative-int16-type -emit-llvm-only -disable-llvm-passes -verify -verify-ignore-unexpected2 3bool test_too_few_arg() {4 return __builtin_hlsl_elementwise_sign();5 // expected-error@-1 {{too few arguments to function call, expected 1, have 0}}6}7 8bool2 test_too_many_arg(float2 p0) {9 return __builtin_hlsl_elementwise_sign(p0, p0);10 // expected-error@-1 {{too many arguments to function call, expected 1, have 2}}11}12 13bool builtin_bool_to_float_type_promotion(bool p1) {14 return __builtin_hlsl_elementwise_sign(p1);15 // expected-error@-1 {passing 'bool' to parameter of incompatible type 'float'}}16}17