From 290b052d43e8656a0226553e3601ebaeb51abbac Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Mon, 13 Jul 2009 16:15:54 +0000 Subject: [PATCH] Fix comment. llvm-svn: 75471 --- clang/lib/CodeGen/CGDebugInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index e45fa55cd43b..9bab92697725 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -732,7 +732,7 @@ llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, 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;