[llvm-commits] [compiler-rt] r169514 - /compiler-rt/trunk/lib/sanitizer_common/sanitizer_allocator.h
Alexey Samsonov
samsonov at google.com
Thu Dec 6 10:27:41 PST 2012
Hm, looks like it didn't help our ancient-gcc bot :(
On Thu, Dec 6, 2012 at 8:22 AM, Kostya Serebryany <kcc at google.com> wrote:
> Author: kcc
> Date: Thu Dec 6 10:22:04 2012
> New Revision: 169514
>
> URL: http://llvm.org/viewvc/llvm-project?rev=169514&view=rev
> Log:
> [sanitizer] POD-ify the allocator cache
>
> 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=169514&r1=169513&r2=169514&view=diff
>
> ==============================================================================
> --- compiler-rt/trunk/lib/sanitizer_common/sanitizer_allocator.h (original)
> +++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_allocator.h Thu Dec
> 6 10:22:04 2012
> @@ -97,8 +97,7 @@
> AllocatorListNode *next;
> };
>
> -class AllocatorFreeList: public IntrusiveList<AllocatorListNode> {
> - public:
> +struct AllocatorFreeList: IntrusiveList<AllocatorListNode> {
> // Move at most max_count chunks to other_free_list.
> void BulkAllocate(uptr max_count, AllocatorFreeList *other_free_list) {
> CHECK(!empty());
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
--
Alexey Samsonov, MSK
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20121206/aa5847a3/attachment.html>
More information about the llvm-commits
mailing list