diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2011-07-26 05:17:23 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2011-07-26 05:17:23 +0000 |
commit | 64ee782e2f0a6e49197ba3f2fa439b0136129434 (patch) | |
tree | 734c4e15416cc3a876e968500a61d9d360ae4cc1 /clang/lib/Basic/SourceLocation.cpp | |
parent | ee4c1d1298ffe3a25e91b391d6d43145bfbea2cd (diff) | |
download | bcm5719-llvm-64ee782e2f0a6e49197ba3f2fa439b0136129434.tar.gz bcm5719-llvm-64ee782e2f0a6e49197ba3f2fa439b0136129434.zip |
Clean up as many of the comments in Basic I can find to talk in terms of
'expansion' rather than 'instantiation' for macro source locations.
llvm-svn: 136058
Diffstat (limited to 'clang/lib/Basic/SourceLocation.cpp')
-rw-r--r-- | clang/lib/Basic/SourceLocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Basic/SourceLocation.cpp b/clang/lib/Basic/SourceLocation.cpp index a13bbc51544..6e4f3e6ad7a 100644 --- a/clang/lib/Basic/SourceLocation.cpp +++ b/clang/lib/Basic/SourceLocation.cpp @@ -48,7 +48,7 @@ void SourceLocation::print(raw_ostream &OS, const SourceManager &SM)const{ OS << "<invalid>"; return; } - // The instantiation and spelling pos is identical for file locs. + // The macro expansion and spelling pos is identical for file locs. OS << PLoc.getFilename() << ':' << PLoc.getLine() << ':' << PLoc.getColumn(); return; |