[PATCH] D49965: [MS Demangler] Demangle symbols in function local scopes

Reid Kleckner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 30 10:44:13 PDT 2018


rnk added a comment.

Something like `tryDemangleNumber` would be like a recursive descent parser. What you're doing looks kind of like lookahead, where you scan forward to see if a pattern matches, and continue if it does. Depending on how complicated this code gets, we may eventually want to do less or more lookahead.


Repository:
  rL LLVM

https://reviews.llvm.org/D49965





More information about the llvm-commits mailing list