[llvm-branch-commits] [clang] [HLSL][RootSignature] Allow for multiple parsing errors in `RootSignatureParser` (PR #147832)

Finn Plummer via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Fri Jul 11 16:50:24 PDT 2025


================
@@ -27,51 +36,68 @@ RootSignatureParser::RootSignatureParser(
 bool RootSignatureParser::parse() {
   // Iterate as many RootSignatureElements as possible, until we hit the
   // end of the stream
+  bool HadError = false;
----------------
inbelic wrote:

The pattern that I have seen elsewhere is to use this form, so I shall keep it

https://github.com/llvm/llvm-project/pull/147832


More information about the llvm-branch-commits mailing list