Files
clang-p2996/clang/test/SemaHLSL/BuiltIns/any-errors.hlsl
Farzon Lotfi 2807ea6b80 [HLSL] implement the any intrinsic (#83903)
This PR implements the frontend for #70076
This PR is part 1 of 2.
Part 2 requires an intrinsic to instructions lowering.

- `Builtins.td` - add an `any` builtin
- `CGBuiltin.cpp` add the builtin to intrinsic lowering
- `hlsl_basic_types.h` -add the `bool` vectors since that is an input
for any
- `hlsl_intrinsics.h` - add the `any`  api
- `SemaChecking.cpp` - addy `any` builtin checking
- `IntrinsicsDirectX.td` - add the llvm intrinsic
2024-03-05 12:46:01 -05:00

13 lines
497 B
HLSL

// RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -emit-llvm -disable-llvm-passes -verify -verify-ignore-unexpected
bool test_too_few_arg() {
return __builtin_hlsl_elementwise_any();
// expected-error@-1 {{too few arguments to function call, expected 1, have 0}}
}
bool test_too_many_arg(float2 p0) {
return __builtin_hlsl_elementwise_any(p0, p0);
// expected-error@-1 {{too many arguments to function call, expected 1, have 2}}
}