[Lldb-commits] [lldb] [lldb] Use AST nodes as Subscript and BitField arguments in DIL (PR #169363)

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Wed Dec 3 17:26:22 PST 2025


================
@@ -11,7 +11,8 @@ unary_expression = postfix_expression
 unary_operator = "*" | "&" | "+" | "-";
 
 postfix_expression = primary_expression
-                   | postfix_expression "[" integer_literal "]"
+                   | postfix_expression "[" expression "]"
+                   | postfix_expression "[" expression "-" expression "]"
----------------
adrian-prantl wrote:

What is this production representing?

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


More information about the lldb-commits mailing list