[cfe-commits] r75471 - /cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
    Devang Patel 
    dpatel at apple.com
       
    Mon Jul 13 09:15:55 PDT 2009
    
    
  
Author: dpatel
Date: Mon Jul 13 11:15:54 2009
New Revision: 75471
URL: http://llvm.org/viewvc/llvm-project?rev=75471&view=rev
Log:
Fix comment.
Modified:
    cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
Modified: cfe/trunk/lib/CodeGen/CGDebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGDebugInfo.cpp?rev=75471&r1=75470&r2=75471&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGDebugInfo.cpp (original)
+++ cfe/trunk/lib/CodeGen/CGDebugInfo.cpp Mon Jul 13 11:15:54 2009
@@ -732,7 +732,7 @@
   if (Ty.isNull())
     return llvm::DIType();
   
-  // Check to see if the compile unit already has created this type.
+  // Check TypeCache first.
   llvm::DIType &Slot = TypeCache[Ty.getAsOpaquePtr()];
   if (!Slot.isNull()) return Slot;
 
    
    
More information about the cfe-commits
mailing list