[clang] [HLSL][RootSignature] Implement Lexing of DescriptorTables (PR #122981)

Finn Plummer via cfe-commits cfe-commits at lists.llvm.org
Tue Feb 11 07:55:30 PST 2025


================
@@ -0,0 +1,171 @@
+#include "clang/Parse/ParseHLSLRootSignature.h"
+
+namespace clang {
+namespace hlsl {
+
+// Lexer Definitions
+
+static bool IsNumberChar(char C) {
+  // TODO(#120472): extend for float support exponents
----------------
inbelic wrote:

Updated the comment to link to https://github.com/llvm/llvm-project/issues/126565, which better describes this.

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


More information about the cfe-commits mailing list