diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-16 07:15:35 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-16 07:15:35 +0000 |
commit | 3c91971b3391a6aa7f48ee11986813204006adf9 (patch) | |
tree | add32f4e72bc63dfbd849aa4ef985b301bfc37a6 /clang/docs/InternalsManual.html | |
parent | c4c181902e3bfd5f813676938fa22ef09b78396c (diff) | |
download | bcm5719-llvm-3c91971b3391a6aa7f48ee11986813204006adf9.tar.gz bcm5719-llvm-3c91971b3391a6aa7f48ee11986813204006adf9.zip |
rename "virtual location" of a macro to "instantiation location".
llvm-svn: 62315
Diffstat (limited to 'clang/docs/InternalsManual.html')
-rw-r--r-- | clang/docs/InternalsManual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/docs/InternalsManual.html b/clang/docs/InternalsManual.html index 3e41d90ab53..2fcadb7a79c 100644 --- a/clang/docs/InternalsManual.html +++ b/clang/docs/InternalsManual.html @@ -437,7 +437,7 @@ source code of the program. Important design points include:</p> <p>In practice, the SourceLocation works together with the SourceManager class to encode two pieces of information about a location: it's spelling location -and it's virtual location. For most tokens, these will be the same. However, +and it's instantiation location. For most tokens, these will be the same. However, for a macro expansion (or tokens that came from a _Pragma directive) these will describe the location of the characters corresponding to the token and the location where the token was used (i.e. the macro instantiation point or the |