[cfe-commits] r62310 - /cfe/trunk/docs/InternalsManual.html

Chris Lattner sabre at nondot.org
Thu Jan 15 23:00:50 PST 2009


Author: lattner
Date: Fri Jan 16 01:00:50 2009
New Revision: 62310

URL: http://llvm.org/viewvc/llvm-project?rev=62310&view=rev
Log:
update for terminology change.

Modified:
    cfe/trunk/docs/InternalsManual.html

Modified: cfe/trunk/docs/InternalsManual.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/InternalsManual.html?rev=62310&r1=62309&r2=62310&view=diff

==============================================================================
--- cfe/trunk/docs/InternalsManual.html (original)
+++ cfe/trunk/docs/InternalsManual.html Fri Jan 16 01:00:50 2009
@@ -436,7 +436,7 @@
 </ol>
 
 <p>In practice, the SourceLocation works together with the SourceManager class
-to encode two pieces of information about a location: it's physical location
+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,
 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
@@ -453,7 +453,7 @@
 tracked correctly.  If it is ever incorrect, the front-end may get confused and
 die.  The reason for this is that the notion of the 'spelling' of a Token in
 Clang depends on being able to find the original input characters for the token.
-This concept maps directly to the "physical" location for the token.</p>
+This concept maps directly to the "spelling location" for the token.</p>
 
 <!-- ======================================================================= -->
 <h2 id="liblex">The Lexer and Preprocessor Library</h2>





More information about the cfe-commits mailing list