We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0780b commit eeffdedCopy full SHA for eeffded
llvm/lib/Target/DirectX/DXILRootSignature.cpp
@@ -234,6 +234,8 @@ static bool verifyRegisterValue(uint32_t RegisterValue) {
234
return RegisterValue != ~0U;
235
}
236
237
+// This Range is reserverved, therefore invalid, according to the spec
238
+// https://github.com/llvm/wg-hlsl/blob/main/proposals/0002-root-signature-in-clang.md#all-the-values-should-be-legal
239
static bool verifyRegisterSpace(uint32_t RegisterSpace) {
240
return !(RegisterSpace >= 0xFFFFFFF0 && RegisterSpace <= 0xFFFFFFFF);
241
0 commit comments