[libcxx] r316874 - Initial triage

2017-10-29 Thread Marshall Clow via cfe-commits
Author: marshall Date: Sun Oct 29 14:57:58 2017 New Revision: 316874 URL: http://llvm.org/viewvc/llvm-project?rev=316874=rev Log: Initial triage Modified: libcxx/trunk/www/upcoming_meeting.html Modified: libcxx/trunk/www/upcoming_meeting.html URL:

[libcxx] r316873 - Update status of 2950

2017-10-29 Thread Marshall Clow via cfe-commits
Author: marshall Date: Sun Oct 29 14:43:30 2017 New Revision: 316873 URL: http://llvm.org/viewvc/llvm-project?rev=316873=rev Log: Update status of 2950 Modified: libcxx/trunk/www/upcoming_meeting.html Modified: libcxx/trunk/www/upcoming_meeting.html URL:

[libcxx] r316867 - Issues to be voted on in ABQ

2017-10-29 Thread Marshall Clow via cfe-commits
Author: marshall Date: Sun Oct 29 12:02:00 2017 New Revision: 316867 URL: http://llvm.org/viewvc/llvm-project?rev=316867=rev Log: Issues to be voted on in ABQ Modified: libcxx/trunk/www/upcoming_meeting.html Modified: libcxx/trunk/www/upcoming_meeting.html URL:

Re: [PATCH] D39360: [C++11] Don't put empty quotes in static_assert diagnostic.

2017-10-29 Thread Kim Gräsman via cfe-commits
A clang-tidy check to remove empty messages from source would be nice, though... - Kim Den 27 okt. 2017 10:24 fm skrev "Nicolas Lesser via Phabricator" < revi...@reviews.llvm.org>: > Rakete abandoned this revision. > Rakete added a comment. > > @kimgr Well, mostly because they bother me

[PATCH] D38683: [X86][AVX512] lowering broadcastm intrinsic - clang part

2017-10-29 Thread Simon Pilgrim via Phabricator via cfe-commits
RKSimon accepted this revision. RKSimon added a comment. This revision is now accepted and ready to land. LGTM https://reviews.llvm.org/D38683 ___ cfe-commits mailing list cfe-commits@lists.llvm.org

[PATCH] D24886: Add [[clang::suppress(rule, ...)]] attribute

2017-10-29 Thread Hristo Hristov via Phabricator via cfe-commits
roccoor added a comment. Microsoft supports: [[gsl::suppress(bounds.3)]] Clang requires: [[gsl::suppress("bounds.3")]] Why is this inconsistency? Here is an example from CppCoreGuidelines [[suppress(bounds)]] char* raw_find(char* p, int n, char x)// find x in p[0]..p[n - 1] {

r316858 - Driver: default to `unsigned int` `wchar_t` for ARM

2017-10-29 Thread Saleem Abdulrasool via cfe-commits
Author: compnerd Date: Sat Oct 28 23:01:14 2017 New Revision: 316858 URL: http://llvm.org/viewvc/llvm-project?rev=316858=rev Log: Driver: default to `unsigned int` `wchar_t` for ARM AAPCS and AAPCS64 mandate that `wchar_t` with `-fno-short-wchar` is an `unsigned int` rather than a `signed int`.