[PATCH] D128947: [Lex] Introduce `PPCallbacks::LexedFileChanged()` preprocessor callback
Ben Langmuir via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 30 15:37:33 PDT 2022
benlangmuir added inline comments.
================
Comment at: clang/lib/Basic/SourceManager.cpp:1016
+ return *Name;
return StringRef();
}
----------------
Just a suggestion: `value_or` can be a nice way to express simple cases like this:
```
getFilename(getFileID(SpellingLoc)).value_or(StringRef());
```
================
Comment at: clang/lib/Lex/PPLexerChange.cpp:136
PPCallbacks::EnterFile, FileType);
+ FileID PrevFID;
+ SourceLocation EnterLoc;
----------------
Why does `LexedFileChanged` have `PrevFID` set, but `FileChanged` does not (it has a default argument of `FileID()`? I would have expected that when you call both `FileChanged` and `LexedFileChanged` for the same event this would match.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128947/new/
https://reviews.llvm.org/D128947
More information about the cfe-commits
mailing list