Skip to content
Snippets Groups Projects
Commit 20e6ccd6 authored by Chris Lattner's avatar Chris Lattner
Browse files

add better comments.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39904 91177308-0d34-0410-b5e6-96231b3b80d8
parent f66d3e39
No related branches found
No related tags found
No related merge requests found
...@@ -101,12 +101,14 @@ void TextDiagnosticPrinter::HighlightRange(const SourceRange &R, ...@@ -101,12 +101,14 @@ void TextDiagnosticPrinter::HighlightRange(const SourceRange &R,
/// GetTokenLength - Given the source location of a token, determine its length. /// GetTokenLength - Given the source location of a token, determine its length.
/// This is a fully general function that uses a lexer to relex the token. /// This is a fully general function that uses a lexer to relex the token.
unsigned TextDiagnosticPrinter::GetTokenLength(SourceLocation Loc) { unsigned TextDiagnosticPrinter::GetTokenLength(SourceLocation Loc) {
const char *StrData = // If this comes from a macro expansion, we really do want the macro name, not
SourceMgr.getCharacterData(SourceMgr.getLogicalLoc(Loc)); // the token this macro expanded to.
Loc = SourceMgr.getLogicalLoc(Loc);
// Note, this could be special cased for common tokens like identifiers, ')', const char *StrData = SourceMgr.getCharacterData(Loc);
// etc to make this faster, if it mattered.
// TODO: this could be special cased for common tokens like identifiers, ')',
// etc to make this faster, if it mattered. This could use
// Lexer::isObviouslySimpleCharacter for example.
unsigned FileID = Loc.getFileID(); unsigned FileID = Loc.getFileID();
// Create a lexer starting at the beginning of this token. // Create a lexer starting at the beginning of this token.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment