================ @@ -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 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
