search for: 90532b35

Displaying 2 results from an estimated 2 matches for "90532b35".

2015 May 06
2
[LLVMdev] Memory Allocation Optimized away with new by not with ::operator new
...e <dblaikie at gmail.com> wrote: > > Didn't we just have this discussion on cfe-dev? (or is there something different I've missed?) -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150506/90532b35/attachment.html>
2015 May 04
2
[LLVMdev] Memory Allocation Optimized away with new by not with ::operator new
Hi, I’ve made my own version of std::vector which is called il::Vector. Due to http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3664.html <http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3664.html>, LLVM can optimise away memory allocation. Therefore, the following code optimise away all memory allocation for w resulting in a single allocation during the whole program (for