[clang] [llvm] [HLSL][RootSignature] Implement parsing of a DescriptorTable with empty clauses (PR #133302)
Finn Plummer via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 13:31:36 PDT 2025
================
@@ -0,0 +1,188 @@
+#include "clang/Parse/ParseHLSLRootSignature.h"
+
+#include "llvm/Support/raw_ostream.h"
+
+using namespace llvm::hlsl::rootsig;
+
+namespace clang {
+namespace hlsl {
+
+static std::string FormatTokenKinds(ArrayRef<TokenKind> Kinds) {
----------------
inbelic wrote:
Updated to define the `const operator<<` for `TokenKind` and removed the api to use `consumeExpectedToken(ArrayRef)`
https://github.com/llvm/llvm-project/pull/133302
More information about the llvm-commits
mailing list