[libcxx] r267981 - Fix or move various non-standard tests.

2016-04-28 Thread Eric Fiselier via cfe-commits
Author: ericwf Date: Thu Apr 28 23:07:45 2016 New Revision: 267981 URL: http://llvm.org/viewvc/llvm-project?rev=267981&view=rev Log: Fix or move various non-standard tests. This patch does the following: * Remove <__config> includes from some container tests. * Guards uses of std::launch::any in

Re: [PATCH] D19654: PR27132: Proper mangling for __unaligned qualifier (now with PR27367 fixed)

2016-04-28 Thread David Majnemer via cfe-commits
majnemer added a comment. It would be good to have a test for the variable template case: template T x; auto g() { return x; } should mangle to `??$x@PEFAH@@3PEFAHEFA` http://reviews.llvm.org/D19654 ___ cfe-commits mailing list cfe-commi

[libcxx] r267982 - Fix test failures by adding missing include

2016-04-28 Thread Eric Fiselier via cfe-commits
Author: ericwf Date: Thu Apr 28 23:18:13 2016 New Revision: 267982 URL: http://llvm.org/viewvc/llvm-project?rev=267982&view=rev Log: Fix test failures by adding missing include Modified: libcxx/trunk/test/std/strings/c.strings/cwchar.pass.cpp Modified: libcxx/trunk/test/std/strings/c.strings

Re: [PATCH] D17841: [libclang/python] Add bindings for children of diagnostics

2016-04-28 Thread Saleem Abdulrasool via cfe-commits
compnerd accepted this revision. This revision is now accepted and ready to land. Comment at: bindings/python/clang/cindex.py:369 @@ +368,3 @@ +def __len__(self): +return int(conf.lib.clang_getNumDiagnosticsInSet(self.diag_set)) + Why

[libcxx] r267983 - Move extern C include test into test/libcxx

2016-04-28 Thread Eric Fiselier via cfe-commits
Author: ericwf Date: Thu Apr 28 23:19:48 2016 New Revision: 267983 URL: http://llvm.org/viewvc/llvm-project?rev=267983&view=rev Log: Move extern C include test into test/libcxx Added: libcxx/trunk/test/libcxx/depr/ libcxx/trunk/test/libcxx/depr/depr.c.headers/ libcxx/trunk/test/libcxx

Re: [PATCH] D17841: [libclang/python] Add bindings for children of diagnostics

2016-04-28 Thread Hanson Wang via cfe-commits
hansonw added a comment. Thanks! I don't have commit permissions; could you check this in for me? Comment at: bindings/python/clang/cindex.py:369 @@ +368,3 @@ +def __len__(self): +return int(conf.lib.clang_getNumDiagnosticsInSet(self.diag_set)) + ---

Re: [PATCH] D19678: Annotated-source optimization reports (a.k.a. "listing" files)

2016-04-28 Thread Hal Finkel via cfe-commits
hfinkel added inline comments. Comment at: lib/CodeGen/CodeGenAction.cpp:734-737 @@ +733,6 @@ + + OS << llvm::format_decimal(L + 1, LNDigits) << " "; + OS << (LLI.Inlined.Transformed && InlinedCols < 2 ? "I" : " "); + OS << (LLI.Unrolled.Transformed && UnrolledCols

<    1   2   3