diff options
author | Owen Anderson <resistor@mac.com> | 2009-06-19 17:20:50 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-06-19 17:20:50 +0000 |
commit | df6785b1c17af715a95145f6dbf70090a5997fdc (patch) | |
tree | 6a209017fd9f2f9530eee7db93d54ac74802b6f5 | |
parent | 722d58b2510ee71a533854c0ee463399fbd81ec1 (diff) | |
download | external_llvm-df6785b1c17af715a95145f6dbf70090a5997fdc.zip external_llvm-df6785b1c17af715a95145f6dbf70090a5997fdc.tar.gz external_llvm-df6785b1c17af715a95145f6dbf70090a5997fdc.tar.bz2 |
Fix incorrect comment pointed out by Duncan.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73773 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Type.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index d14f29c..66eb10a 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -47,7 +47,7 @@ AbstractTypeUser::~AbstractTypeUser() {} static ManagedStatic<sys::SmartRWMutex<true> > 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<sys::SmartMutex<true> > AbstractTypeUsersLock; |