[libcxx] r279709 - Creating release candidate rc3 from release_390 branch

2016-08-24 Thread Hans Wennborg via cfe-commits
Author: hans Date: Wed Aug 24 22:32:22 2016 New Revision: 279709 URL: http://llvm.org/viewvc/llvm-project?rev=279709&view=rev Log: Creating release candidate rc3 from release_390 branch Added: libcxx/tags/RELEASE_390/rc3/ (props changed) - copied from r279708, libcxx/branches/release_

[libcxxabi] r279710 - Creating release candidate rc3 from release_390 branch

2016-08-24 Thread Hans Wennborg via cfe-commits
Author: hans Date: Wed Aug 24 22:32:25 2016 New Revision: 279710 URL: http://llvm.org/viewvc/llvm-project?rev=279710&view=rev Log: Creating release candidate rc3 from release_390 branch Added: libcxxabi/tags/RELEASE_390/rc3/ (props changed) - copied from r279709, libcxxabi/branches/re

[libunwind] r279716 - Creating release candidate rc3 from release_390 branch

2016-08-24 Thread Hans Wennborg via cfe-commits
Author: hans Date: Wed Aug 24 22:32:43 2016 New Revision: 279716 URL: http://llvm.org/viewvc/llvm-project?rev=279716&view=rev Log: Creating release candidate rc3 from release_390 branch Added: libunwind/tags/RELEASE_390/rc3/ (props changed) - copied from r279715, libunwind/branches/re

Re: [PATCH] D23832: cmake: Add ordering dep between HTML Sphinx docs and manpages

2016-08-24 Thread Andrew Wilkins via cfe-commits
axw accepted this revision. axw added a comment. This revision is now accepted and ready to land. LGTM https://reviews.llvm.org/D23832 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: r278984 - Add test missed from r278983.

2016-08-24 Thread Yaron Keren via cfe-commits
Thanks! 2016-08-25 0:39 GMT+03:00 Richard Smith : > As of r279668, we shouldn't run this test for ASan builds any more. > Perhaps we should increase Clang's minimum stack allocation when built with > ASan to compensate for it making stack frames larger. > On Wed, Aug 24, 2016 at 12:33 AM, Yaron

Re: [PATCH] D23853: Assert in performTrivialCopy - Bug report and a possible solution

2016-08-24 Thread Gábor Horváth via cfe-commits
xazax.hun added a comment. > Also: I think r270511 is unlikely to be the change that caused this -- that > is a change in LLVM's treatment of DebugInfo, which shouldn't affect the > analyzer. I think Peter means that, that revision introduced the code that the analyzer fails to analyze (and

Re: [PATCH] D23855: Make exception-throwing from a noexcept build `abort()`.

2016-08-24 Thread Marshall Clow via cfe-commits
mclow.lists updated this revision to Diff 69201. mclow.lists added a comment. I like this revision better; I need to check, but I think this hits all the exception classes. Goal: Every exception class in the standard should have a `VSTD::__throw_XXX` function, marked `_LIBCPP_NORETURN inline _L

Re: [PATCH] D23855: Make exception-throwing from a noexcept build `abort()`.

2016-08-24 Thread Marshall Clow via cfe-commits
mclow.lists added inline comments. Comment at: include/stdexcept:174 @@ -173,1 +173,3 @@ +// in the dylib +_LIBCPP_BEGIN_NAMESPACE_STD This comment belongs to `__throw_runtime_error` https://reviews.llvm.org/D23855 __

Re: [PATCH] D23855: Make exception-throwing from a noexcept build `abort()`.

2016-08-24 Thread Marshall Clow via cfe-commits
mclow.lists added inline comments. Comment at: src/thread.cpp:59 @@ -58,1 +58,3 @@ throw system_error(error_code(ec, system_category()), "thread::join failed"); +#else +if (ec) Need to fix these, too. https://reviews.llvm.org/D23855

<    1   2