hokein added inline comments.
================ Comment at: clang-tools-extra/pseudo/lib/cxx.bnf:716 string-literal := string-literal-chunk -string-literal := string-literal string-literal-chunk +string-literal := string-literal-chunk string-literal user-defined-literal := user-defined-integer-literal ---------------- I also wrote this as right recursive, it significantly reduces the states in the GSS (35% saving!) before: ``` Forest bytes: 1898128 nodes: 105456 GSS bytes: 3801192 nodes: 158029 ``` after: ``` Forest bytes: 1898128 nodes: 105456 GSS bytes: 2539624 nodes: 105433 ``` Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D125794/new/ https://reviews.llvm.org/D125794 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits