r286679 - [c++1z] p0522 is approved.

2016-11-11 Thread Richard Smith via cfe-commits
Author: rsmith Date: Fri Nov 11 17:46:25 2016 New Revision: 286679 URL: http://llvm.org/viewvc/llvm-project?rev=286679&view=rev Log: [c++1z] p0522 is approved. Modified: cfe/trunk/www/cxx_status.html Modified: cfe/trunk/www/cxx_status.html URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/

r286680 - [index] Rename SymbolSubKind -> SymbolProperty, NFC.

2016-11-11 Thread Argyrios Kyrtzidis via cfe-commits
Author: akirtzidis Date: Fri Nov 11 17:49:55 2016 New Revision: 286680 URL: http://llvm.org/viewvc/llvm-project?rev=286680&view=rev Log: [index] Rename SymbolSubKind -> SymbolProperty, NFC. This better reflects what it represents. Modified: cfe/trunk/include/clang/Index/IndexSymbol.h cfe

[PATCH] D23096: [Sema] Pass CombineWithOuterScope = true to constructor of LocalInstantiationScope

2016-11-11 Thread Akira Hatanaka via cfe-commits
ahatanak updated this revision to Diff 77691. ahatanak added a comment. - Transform uninstantiated default arguments Exprs in TreeTransform::TransformLambdaExpr. - In default-expr-arguments-3.cpp, check that there are no crashes or diagnostics emitted instead of printing the AST. https://revie

r286681 - [c++1z] Two more features have been accepted.

2016-11-11 Thread Richard Smith via cfe-commits
Author: rsmith Date: Fri Nov 11 17:51:47 2016 New Revision: 286681 URL: http://llvm.org/viewvc/llvm-project?rev=286681&view=rev Log: [c++1z] Two more features have been accepted. Modified: cfe/trunk/www/cxx_status.html Modified: cfe/trunk/www/cxx_status.html URL: http://llvm.org/viewvc/llvm

[PATCH] D26564: Use PIC relocation mode by default for PowerPC64 ELF

2016-11-11 Thread Bill Schmidt via cfe-commits
wschmidt added a comment. In https://reviews.llvm.org/D26564#593352, @hfinkel wrote: > @wschmidt and other IBM folks, w.r.t. this and > https://reviews.llvm.org/D26566, can you please comment on what GCC does > here? Does GCC use -fPIC by default for PPC64 (literally or in effect)? This is an

[PATCH] D26546: [PPC] Add vec_insert4b/vec_extract4b to altivec.h

2016-11-11 Thread Nemanja Ivanovic via cfe-commits
nemanjai added inline comments. Comment at: lib/Headers/altivec.h:12014 +#define vec_insert4b(__a, __b, __c) \ + ((vector unsigned char)__builtin_vsx_xxinsertw((__a), (__b), (__c) & 0xF)) +#endif As far as I can tell by looking at this patch and the correspondin

r286685 - [c++1z] std::byte didn't make it

2016-11-11 Thread Richard Smith via cfe-commits
Author: rsmith Date: Fri Nov 11 18:15:24 2016 New Revision: 286685 URL: http://llvm.org/viewvc/llvm-project?rev=286685&view=rev Log: [c++1z] std::byte didn't make it Modified: cfe/trunk/www/cxx_status.html Modified: cfe/trunk/www/cxx_status.html URL: http://llvm.org/viewvc/llvm-project/cfe/

[PATCH] D26571: Clean up layout of ASTMerge tests

2016-11-11 Thread Sean Callanan via cfe-commits
spyffe created this revision. spyffe added a reviewer: a.sidorin. spyffe added a subscriber: cfe-commits. spyffe set the repository for this revision to rL LLVM. As outlined in a previous RFC, the `test/ASTMerge/Inputs` folder is getting full and the tests are starting to become interdependent.

r286694 - [analyzer] Improve misleading RetainCountChcker diagnostic under ARC

2016-11-11 Thread Devin Coughlin via cfe-commits
Author: dcoughlin Date: Fri Nov 11 19:03:06 2016 New Revision: 286694 URL: http://llvm.org/viewvc/llvm-project?rev=286694&view=rev Log: [analyzer] Improve misleading RetainCountChcker diagnostic under ARC Under automated reference counting the analyzer treats a methods -- even those starting with

r286696 - Add instructions in clang get_started page about working with a monorepo

2016-11-11 Thread Mehdi Amini via cfe-commits
Author: mehdi_amini Date: Fri Nov 11 19:18:17 2016 New Revision: 286696 URL: http://llvm.org/viewvc/llvm-project?rev=286696&view=rev Log: Add instructions in clang get_started page about working with a monorepo Modified: cfe/trunk/www/get_started.html Modified: cfe/trunk/www/get_started.html

r286697 - [analyzer] Fix copy-pasta in NullableReturnedFromNonnullChecker checker name.

2016-11-11 Thread Devin Coughlin via cfe-commits
Author: dcoughlin Date: Fri Nov 11 19:23:01 2016 New Revision: 286697 URL: http://llvm.org/viewvc/llvm-project?rev=286697&view=rev Log: [analyzer] Fix copy-pasta in NullableReturnedFromNonnullChecker checker name. The name of the NullableReturnedFromNonnullChecker in Checkers.td was accidentally

[PATCH] D26454: Implement no_sanitize_address for global vars

2016-11-11 Thread Kostya Serebryany via cfe-commits
kcc added a comment. Does this change deserve a documentation update? https://reviews.llvm.org/D26454 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

r286699 - [c++1z] Support constant folding for __builtin_strchr and __builtin_memchr.

2016-11-11 Thread Richard Smith via cfe-commits
Author: rsmith Date: Fri Nov 11 19:39:56 2016 New Revision: 286699 URL: http://llvm.org/viewvc/llvm-project?rev=286699&view=rev Log: [c++1z] Support constant folding for __builtin_strchr and __builtin_memchr. Modified: cfe/trunk/lib/AST/ExprConstant.cpp cfe/trunk/test/SemaCXX/constexpr-st

r286700 - [analyzer] Update 'Automated' to 'Automatic' from r286694.

2016-11-11 Thread Devin Coughlin via cfe-commits
Author: dcoughlin Date: Fri Nov 11 19:50:04 2016 New Revision: 286700 URL: http://llvm.org/viewvc/llvm-project?rev=286700&view=rev Log: [analyzer] Update 'Automated' to 'Automatic' from r286694. ARC is 'Automatic Reference Counting' and not 'Automated Reference Counting'. Modified: cfe/trunk

[PATCH] D26282: [PowerPC] Implement plain VSX load/store builtins.

2016-11-11 Thread Eugene Zelenko via cfe-commits
Eugene.Zelenko closed this revision. Eugene.Zelenko added a comment. Committed in https://reviews.llvm.org/rL286455. See http://llvm.org/docs/Phabricator.html#committing-a-change for review automatic closing. https://reviews.llvm.org/D26282 ___ cf

[PATCH] D24082: [CMake] Fix libc++abi arm build w/o libunwind.

2016-11-11 Thread Logan Chien via cfe-commits
logan added a comment. Hi @EricWF: Would you mind if I commit this patch as-is? I believe `OFF` will is the better default value for ARM as well. Thanks. Logan https://reviews.llvm.org/D24082 ___ cfe-commits mailing list cfe-commits@lists.llvm.

[PATCH] D26019: [AVX-512] Use scalar vfmsub/vfnmsub mask3 intrinsics instead of inverting the mask argument of a vfmadd intrinsic.

2016-11-11 Thread Craig Topper via cfe-commits
craig.topper added a comment. Ping https://reviews.llvm.org/D26019 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

r286714 - [AVX-512] Convert the rest of the masked shift by immediate and by single element builtins over to the newly added unmasked builtins and a select.

2016-11-11 Thread Craig Topper via cfe-commits
Author: ctopper Date: Sat Nov 12 01:16:59 2016 New Revision: 286714 URL: http://llvm.org/viewvc/llvm-project?rev=286714&view=rev Log: [AVX-512] Convert the rest of the masked shift by immediate and by single element builtins over to the newly added unmasked builtins and a select. This should als

r286715 - clang-format: Support ObjC selectors with unnamed parameters.

2016-11-11 Thread Daniel Jasper via cfe-commits
Author: djasper Date: Sat Nov 12 01:38:22 2016 New Revision: 286715 URL: http://llvm.org/viewvc/llvm-project?rev=286715&view=rev Log: clang-format: Support ObjC selectors with unnamed parameters. This fixes llvm.org/PR28063. Modified: cfe/trunk/lib/Format/ContinuationIndenter.cpp cfe/tru

<    1   2