Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaHLSL / WaveBuiltinAvailability.hlsl
blob0e45edc6a4c86031c5fce362ce82e255da1bde45
1 // RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel5.0-library -verify %s
2 // WaveActiveCountBits is unavailable before ShaderModel 6.0.
4 unsigned foo(bool b) {
5     // expected-warning@#site {{'WaveActiveCountBits' is only available on HLSL ShaderModel 6.0 or newer}}
6     // expected-note@hlsl/hlsl_intrinsics.h:* {{'WaveActiveCountBits' has been marked as being introduced in HLSL ShaderModel 6.0 here, but the deployment target is HLSL ShaderModel 5.0}}
7     // expected-note@#site {{enclose 'WaveActiveCountBits' in a __builtin_available check to silence this warning}}
8     return hlsl::WaveActiveCountBits(b); // #site