9 lines
243 B
HLSL
9 lines
243 B
HLSL
|
// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple dxil--shadermodel6.7-library %s -verify
|
||
|
|
||
|
// Make sure WaveActiveCountBits is accepted.
|
||
|
|
||
|
// expected-no-diagnostics
|
||
|
unsigned foo(bool b) {
|
||
|
return hlsl::WaveActiveCountBits(b);
|
||
|
}
|