blob: 6210c998d8e2ddfe7d9cb1005f8026f365a552ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// 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-unexpected
bool test_too_few_arg() {
return __builtin_hlsl_any();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
}
bool test_too_many_arg(float2 p0) {
return __builtin_hlsl_any(p0, p0);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
}
|