1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Fix incorrect comment pointed out by Duncan.

llvm-svn: 73773
This commit is contained in:
Owen Anderson 2009-06-19 17:20:50 +00:00
parent 3d9e4468a2
commit c17c15cb23

View File

@ -47,7 +47,7 @@ AbstractTypeUser::~AbstractTypeUser() {}
static ManagedStatic<sys::SmartRWMutex<true> > TypeMapLock; static ManagedStatic<sys::SmartRWMutex<true> > TypeMapLock;
// Recursive lock used for guarding access to AbstractTypeUsers. // 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. // multithreaded mode.
static ManagedStatic<sys::SmartMutex<true> > AbstractTypeUsersLock; static ManagedStatic<sys::SmartMutex<true> > AbstractTypeUsersLock;