Re: [PATCH] D7639: Add readability-redundant-void-arg check to clang-tidy

2015-10-27 Thread Alexander Kornienko via cfe-commits
alexfh added a comment. FYI, I had to update tests' RUN lines for some recent changes. I'm also going to move the check to the modernize module, where it belongs. http://reviews.llvm.org/D7639 ___ cfe-commits mailing list cfe-commits@lists.llvm.org

[clang-tools-extra] r251475 - Add modernize-redundant-void-arg check to clang-tidy

2015-10-27 Thread Alexander Kornienko via cfe-commits
Author: alexfh Date: Tue Oct 27 20:36:20 2015 New Revision: 251475 URL: http://llvm.org/viewvc/llvm-project?rev=251475&view=rev Log: Add modernize-redundant-void-arg check to clang-tidy This check for clang-tidy looks for function with zero arguments declared as (void) and removes the unnecessar

Re: [PATCH] D7639: Add readability-redundant-void-arg check to clang-tidy

2015-10-27 Thread Alexander Kornienko via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL251475: Add modernize-redundant-void-arg check to clang-tidy (authored by alexfh). Changed prior to commit: http://reviews.llvm.org/D7639?vs=37717&id=38617#toc Repository: rL LLVM http://reviews.llv

Re: [PATCH] D13928: [CodeGen] Attach function attributes to Objective-c and OpenMP functions.

2015-10-27 Thread Akira Hatanaka via cfe-commits
ahatanak added a comment. I'm taking incremental steps here, but I agree that we should refactor this in a better way later. http://reviews.llvm.org/D13928 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailma

r251476 - [CodeGen] Attach function attributes to Objective-C and OpenMP

2015-10-27 Thread Akira Hatanaka via cfe-commits
Author: ahatanak Date: Tue Oct 27 21:30:47 2015 New Revision: 251476 URL: http://llvm.org/viewvc/llvm-project?rev=251476&view=rev Log: [CodeGen] Attach function attributes to Objective-C and OpenMP functions. This commit fixes a bug in CGOpenMPRuntime.cpp and CGObjC.cpp where some of the function

Re: [PATCH] D13928: [CodeGen] Attach function attributes to Objective-c and OpenMP functions.

2015-10-27 Thread Akira Hatanaka via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL251476: [CodeGen] Attach function attributes to Objective-C and OpenMP (authored by ahatanak). Changed prior to commit: http://reviews.llvm.org/D13928?vs=37967&id=38619#toc Repository: rL LLVM http:

r251477 - Add a test case for r251476.

2015-10-27 Thread Akira Hatanaka via cfe-commits
Author: ahatanak Date: Tue Oct 27 21:32:19 2015 New Revision: 251477 URL: http://llvm.org/viewvc/llvm-project?rev=251477&view=rev Log: Add a test case for r251476. Added: cfe/trunk/test/OpenMP/function-attr.cpp Added: cfe/trunk/test/OpenMP/function-attr.cpp URL: http://llvm.org/viewvc/llvm-

Re: [PATCH] D13874: Atomics: support __c11_* calls on _Atomic struct types

2015-10-27 Thread Saleem Abdulrasool via cfe-commits
compnerd added a subscriber: compnerd. compnerd accepted this revision. compnerd added a reviewer: compnerd. This revision is now accepted and ready to land. Comment at: lib/CodeGen/CGAtomic.cpp:782 @@ +781,3 @@ + LValue AtomicVal = MakeAddrLValue(Ptr, AtomicTy); + AtomicInfo At

Re: [PATCH] D12793: Three new overflow builtins with generic argument types

2015-10-27 Thread David Grayson via cfe-commits
DavidEGrayson added a comment. Ping. http://reviews.llvm.org/D12793 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[PATCH] Bug 15109: Implement -Wdouble-promotion for clang

2015-10-27 Thread Carl Norum via cfe-commits
Hi folks, I had need of this warning, so I cobbled something together. Can someone please check it out and let me know if it's reasonable? I'm certainly no expert at this stuff. Patch attached for review, thanks! -- Carl double-promotion.patch Description: Binary data ___

r251493 - Driver: support -fuse-ld= on cross windows

2015-10-27 Thread Saleem Abdulrasool via cfe-commits
Author: compnerd Date: Tue Oct 27 23:45:58 2015 New Revision: 251493 URL: http://llvm.org/viewvc/llvm-project?rev=251493&view=rev Log: Driver: support -fuse-ld= on cross windows Update the linker selection to support the `-fuse-ld=` option for selecting a linker. Added: cfe/trunk/test/Driver

r251496 - Refine r251469 to give better (and more localizable) diagnostics

2015-10-27 Thread John McCall via cfe-commits
Author: rjmccall Date: Wed Oct 28 00:03:19 2015 New Revision: 251496 URL: http://llvm.org/viewvc/llvm-project?rev=251496&view=rev Log: Refine r251469 to give better (and more localizable) diagnostics for all the reasons that ARC makes things implicitly unavailable. Modified: cfe/trunk/include

[clang-tools-extra] r251499 - [tidy] Remove stray iostream include from test.

2015-10-27 Thread Benjamin Kramer via cfe-commits
Author: d0k Date: Wed Oct 28 00:16:37 2015 New Revision: 251499 URL: http://llvm.org/viewvc/llvm-project?rev=251499&view=rev Log: [tidy] Remove stray iostream include from test. It is unused and we cannot rely on standard headers being present while executing tests. Modified: clang-tools-ext

r251501 - Reflow comment.

2015-10-27 Thread Eric Christopher via cfe-commits
Author: echristo Date: Wed Oct 28 01:56:25 2015 New Revision: 251501 URL: http://llvm.org/viewvc/llvm-project?rev=251501&view=rev Log: Reflow comment. Modified: cfe/trunk/lib/CodeGen/CGBuiltin.cpp Modified: cfe/trunk/lib/CodeGen/CGBuiltin.cpp URL: http://llvm.org/viewvc/llvm-project/cfe/tru

<    1   2