diff options
author | shafik <syaghmour@apple.com> | 2020-03-27 14:12:38 -0700 |
---|---|---|
committer | shafik <syaghmour@apple.com> | 2020-03-27 14:46:39 -0700 |
commit | 8016d61e3cf4967dd28c8f6296cec685dadcaee6 (patch) | |
tree | 1c8b0c3457ceb5154bd3eaaa8c69baf24f63f6a8 /llvm/lib/Support/VirtualFileSystem.cpp | |
parent | 6eb345af5a1bb182a1292c8a285a6a509af61a94 (diff) | |
download | llvm-8016d61e3cf4967dd28c8f6296cec685dadcaee6.zip llvm-8016d61e3cf4967dd28c8f6296cec685dadcaee6.tar.gz llvm-8016d61e3cf4967dd28c8f6296cec685dadcaee6.tar.bz2 |
[LLDB] CPlusPlusNameParser does not handles templated operator< properly
CPlusPlusNameParser is used in several places on of them is during IR execution and setting breakpoints to pull information C++ like the basename, the context and arguments.
Currently it does not handle templated operator< properly, because of idiosyncrasy is how clang generates debug info for these cases.
It uses clang::Lexer which will tokenize operator<<A::B> into:
tok::kw_operator
tok::lessless
tok::raw_identifier
Later on the parser in ConsumeOperator() does not handle this case properly and we end up failing to parse.
Differential Revision: https://reviews.llvm.org/D76168
Diffstat (limited to 'llvm/lib/Support/VirtualFileSystem.cpp')
0 files changed, 0 insertions, 0 deletions