]> granicus.if.org Git - clang/commitdiff
Clean up two lingering comments that mention 'instantiation' w.r.t.
authorChandler Carruth <chandlerc@gmail.com>
Thu, 14 Jul 2011 16:07:57 +0000 (16:07 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Thu, 14 Jul 2011 16:07:57 +0000 (16:07 +0000)
macros in libclang.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@135148 91177308-0d34-0410-b5e6-96231b3b80d8

tools/libclang/CIndex.cpp

index c78584a3a72a6b2d13d99e55fe2cd17f76f909d5..756d570d9114a5af9e3c779b136172bf5c4731e3 100644 (file)
@@ -2806,7 +2806,7 @@ void clang_getInstantiationLocation(CXSourceLocation location,
     *static_cast<const SourceManager*>(location.ptr_data[0]);
   SourceLocation InstLoc = SM.getInstantiationLoc(Loc);
 
-  // Check that the FileID is invalid on the instantiation location.
+  // Check that the FileID is invalid on the expansion location.
   // This can manifest in invalid code.
   FileID fileID = SM.getFileID(InstLoc);
   bool Invalid = false;
@@ -4541,8 +4541,8 @@ AnnotateTokensWorker::Visit(CXCursor cursor, CXCursor parent) {
   }
   
   if (clang_isPreprocessing(cursor.kind)) {    
-    // For macro instantiations, just note where the beginning of the macro
-    // instantiation occurs.
+    // For macro expansions, just note where the beginning of the macro
+    // expansion occurs.
     if (cursor.kind == CXCursor_MacroExpansion) {
       Annotated[Loc.int_data] = cursor;
       return CXChildVisit_Recurse;