r252400 - Make a couple methods static.

2015-11-07 Thread Craig Topper via cfe-commits
Author: ctopper Date: Sat Nov 7 02:08:34 2015 New Revision: 252400 URL: http://llvm.org/viewvc/llvm-project?rev=252400&view=rev Log: Make a couple methods static. Modified: cfe/trunk/include/clang/Sema/Sema.h Modified: cfe/trunk/include/clang/Sema/Sema.h URL: http://llvm.org/viewvc/llvm-pr

r252399 - Make SemaBuiltinCpuSupports a static function. NFC.

2015-11-07 Thread Craig Topper via cfe-commits
Author: ctopper Date: Sat Nov 7 02:08:31 2015 New Revision: 252399 URL: http://llvm.org/viewvc/llvm-project?rev=252399&view=rev Log: Make SemaBuiltinCpuSupports a static function. NFC. Modified: cfe/trunk/include/clang/Sema/Sema.h cfe/trunk/lib/Sema/SemaChecking.cpp Modified: cfe/trunk/

Re: [PATCH] D12407: [clang-format-vs] Add an option to reformat source code when file is saved to disk

2015-11-07 Thread Kim Gräsman via cfe-commits
kimgr added a subscriber: kimgr. kimgr added a comment. Add debugging ideas. Comment at: tools/clang-format-vs/ClangFormat/ClangFormatPackage.cs:86 @@ -69,1 +85,3 @@ +IComponentModel componentModel = GetService(typeof(SComponentModel)) as IComponentModel; +

r252404 - Remove spaces at start of line, NFC.

2015-11-07 Thread Yaron Keren via cfe-commits
Author: yrnkrn Date: Sat Nov 7 10:24:52 2015 New Revision: 252404 URL: http://llvm.org/viewvc/llvm-project?rev=252404&view=rev Log: Remove spaces at start of line, NFC. Modified: cfe/trunk/include/clang/Frontend/CompilerInvocation.h Modified: cfe/trunk/include/clang/Frontend/CompilerInvoca

r252405 - Remove spaces in empty line, NFC.

2015-11-07 Thread Yaron Keren via cfe-commits
Author: yrnkrn Date: Sat Nov 7 10:35:07 2015 New Revision: 252405 URL: http://llvm.org/viewvc/llvm-project?rev=252405&view=rev Log: Remove spaces in empty line, NFC. Modified: cfe/trunk/lib/Lex/PPLexerChange.cpp Modified: cfe/trunk/lib/Lex/PPLexerChange.cpp URL: http://llvm.org/viewvc/llv

[libcxx] r252406 - More of P0006R0: type traits variable aliases for C++17.

2015-11-07 Thread Marshall Clow via cfe-commits
Author: marshall Date: Sat Nov 7 11:44:36 2015 New Revision: 252406 URL: http://llvm.org/viewvc/llvm-project?rev=252406&view=rev Log: More of P0006R0: type traits variable aliases for C++17. Modified: libcxx/trunk/include/type_traits libcxx/trunk/test/std/utilities/meta/meta.unary/meta.

[libcxx] r252407 - Implement LWG#2353: std::next is over-constrained

2015-11-07 Thread Marshall Clow via cfe-commits
Author: marshall Date: Sat Nov 7 11:48:49 2015 New Revision: 252407 URL: http://llvm.org/viewvc/llvm-project?rev=252407&view=rev Log: Implement LWG#2353: std::next is over-constrained Modified: libcxx/trunk/include/iterator libcxx/trunk/test/std/iterators/iterator.primitives/iterator.op

[libcxx] r252408 - Mark LWG#2224 as complete. Wording change only, no code changes required

2015-11-07 Thread Marshall Clow via cfe-commits
Author: marshall Date: Sat Nov 7 11:56:51 2015 New Revision: 252408 URL: http://llvm.org/viewvc/llvm-project?rev=252408&view=rev Log: Mark LWG#2224 as complete. Wording change only, no code changes required Modified: libcxx/trunk/www/cxx1z_status.html Modified: libcxx/trunk/www/cxx1z_status

r252410 - [analyzer] Update SATestBuild.py to enable a 'download and patch' model for projects.

2015-11-07 Thread Devin Coughlin via cfe-commits
Author: dcoughlin Date: Sat Nov 7 12:27:35 2015 New Revision: 252410 URL: http://llvm.org/viewvc/llvm-project?rev=252410&view=rev Log: [analyzer] Update SATestBuild.py to enable a 'download and patch' model for projects. Currently the SATestBuild.py and SATestAdd.py buildbot scripts expect proj

Re: [PATCH] D14345: [analyzer] Update SATestBuild.py to enable a 'download and patch' model for projects.

2015-11-07 Thread Devin Coughlin via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL252410: [analyzer] Update SATestBuild.py to enable a 'download and patch' model for… (authored by dcoughlin). Changed prior to commit: http://reviews.llvm.org/D14345?vs=39229&id=39641#toc Repository:

Re: [PATCH] D14385: Correct atomic libcall support for __atomic_*_fetch builtins.

2015-11-07 Thread James Y Knight via cfe-commits
jyknight updated this revision to Diff 39644. jyknight marked 2 inline comments as done. jyknight added a comment. Respond to comments. http://reviews.llvm.org/D14385 Files: lib/CodeGen/CGAtomic.cpp test/CodeGen/atomic-ops-libcall.c Index: test/CodeGen/atomic-ops-libcall.c

Re: [PATCH] D14385: Correct atomic libcall support for __atomic_*_fetch builtins.

2015-11-07 Thread James Y Knight via cfe-commits
jyknight added inline comments. Comment at: lib/CodeGen/CGAtomic.cpp:901 @@ -897,1 +900,3 @@ + PostOp = llvm::Instruction::Add; +// Fall through. case AtomicExpr::AO__c11_atomic_fetch_add: compnerd wrote: > I think we should use `[[clang::fallthrough