Displaying 2 results from an estimated 2 matches for "b17c0de".
2015 May 11
2
[LLVMdev] Bug in Support/Allocator.h
Hi,
llvm::BumpPtrAllocatorImpl::Reset() looks like it has a bug.
There is this check at the top:
if (Slabs.empty())
return;
But what if you don't have any normal Slabs allocated but only
CustomSizedSlabs.
I think this should be:
if (Slabs.empty() && CustomSizedSlabs.empty())
return;
2013 Jul 28
0
[LLVMdev] libcxx support library
Hi,
I would like to install clang 3.3 with libc++ on Linux where g++4.4 is
currently the default/only toolchain. I'm not sure how to choose the
best support library: libsupc++/libc++abi/libcxxrt.
Concerning libsupc++, I noticed this:
http://lists.cs.uiuc.edu/pipermail/llvmbugs/2012-August/024800.html
Are there other issues with using libsupc++? Doesn't it even make sense
to use libsupc++