[llvm-commits] [compiler-rt] r172064 - /compiler-rt/trunk/lib/sanitizer_common/sanitizer_allocator.h

Dmitry Vyukov dvyukov at google.com
Thu Jan 10 05:06:35 PST 2013


Author: dvyukov
Date: Thu Jan 10 07:06:35 2013
New Revision: 172064

URL: http://llvm.org/viewvc/llvm-project?rev=172064&view=rev
Log:
asan/tsan: fix comment

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_allocator.h

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_allocator.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_allocator.h?rev=172064&r1=172063&r2=172064&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_allocator.h (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_allocator.h Thu Jan 10 07:06:35 2013
@@ -660,9 +660,9 @@
   State *state_;
 };
 
-// Objects of this type should be used as local caches for SizeClassAllocator64.
-// Since the typical use of this class is to have one object per thread in TLS,
-// is has to be POD.
+// Objects of this type should be used as local caches for SizeClassAllocator64
+// or SizeClassAllocator32. Since the typical use of this class is to have one
+// object per thread in TLS, is has to be POD.
 template<class SizeClassAllocator>
 struct SizeClassAllocatorLocalCache {
   typedef SizeClassAllocator Allocator;





More information about the llvm-commits mailing list