Displaying 3 results from an estimated 3 matches for "57f4631f".
2013 Jan 09
0
[LLVMdev] Using C++'11 language features in LLVM itself
On 1/8/2013 5:45 PM, Chris Lattner wrote:
>
>some version of Clang and later (Freebsd folks?).
FreeBSD 9.1 uses GCC 4.2.1 and Clang 3.0, although I have some doubts
about the clang, at least on PPC32. Trunk clang compiled with the
system clang crashes on code that the same trunk clang compiles fine
when built with gcc. It may as well be a source problem in trunk though...
-Krzysztof
2013 Jan 09
2
[LLVMdev] Using C++'11 language features in LLVM itself
...t;
--
Marc J. Driftmeyer
Email :: mjd at reanimality.com <mailto:mjd at reanimality.com>
Web :: http://www.reanimality.com
Cell :: (509) 435-5212
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130108/57f4631f/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: mjd.vcf
Type: text/x-vcard
Size: 317 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130108/57f4631f/attachment.vcf>
2013 Jan 08
15
[LLVMdev] Using C++'11 language features in LLVM itself
It's seems like a quiet and peaceful day, lets stir things up a bit :)
How crazy would it be for us to start using basic C++'11 language features (but not C++'11 library features) in LLVM: things like auto, rvalue-refs, lambdas, etc? I think that we can keep things well defined with a few simple requirements: language features must be supported by MSVC 2010 and later, some version of