From c17c15cb23e1c42124289bd28c0d0c5b80147857 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Fri, 19 Jun 2009 17:20:50 +0000 Subject: [PATCH] Fix incorrect comment pointed out by Duncan. llvm-svn: 73773 --- lib/VMCore/Type.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index d14f29cfc8a..66eb10af23c 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -47,7 +47,7 @@ AbstractTypeUser::~AbstractTypeUser() {} static ManagedStatic > TypeMapLock; // Recursive lock used for guarding access to AbstractTypeUsers. -// NOTE: The false template parameter means this will no-op when we're not in +// NOTE: The true template parameter means this will no-op when we're not in // multithreaded mode. static ManagedStatic > AbstractTypeUsersLock;