[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / clang / test / SemaHLSL / WaveBuiltinAvailability.hlsl
blob6333c635693272f7bc4925f989dcb9266e9e5df1
1 // RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel5.0-library -verify %s
2 // WaveActiveCountBits is unavailable before ShaderModel 6.0.
4 [shader("compute")]
5 [numthreads(8,8,1)]
6 unsigned foo() {
7     // expected-error@#site {{'WaveActiveCountBits' is only available on Shader Model 6.0 or newer}}
8     // expected-note@hlsl/hlsl_intrinsics.h:* {{'WaveActiveCountBits' has been marked as being introduced in Shader Model 6.0 here, but the deployment target is Shader Model 5.0}}
9     return hlsl::WaveActiveCountBits(1); // #site