r265895 - [Clang][AVX512][BuiltIn] Adding avx512 ( store ) builtin to clang

2016-04-10 Thread Michael Zuckerman via cfe-commits
Author: mzuckerm Date: Sun Apr 10 05:51:04 2016 New Revision: 265895 URL: http://llvm.org/viewvc/llvm-project?rev=265895&view=rev Log: [Clang][AVX512][BuiltIn] Adding avx512 ( store ) builtin to clang Differential Revision: http://reviews.llvm.org/D18925 Modified: cfe/trunk/include/clang/Ba

r265896 - Adding avx512 (unpck{h|l}{pd|ps}, rcp14{pd|ps}{128|256}, vplzcnt{d|q} ) builtin to clang

2016-04-10 Thread Michael Zuckerman via cfe-commits
Author: mzuckerm Date: Sun Apr 10 07:54:23 2016 New Revision: 265896 URL: http://llvm.org/viewvc/llvm-project?rev=265896&view=rev Log: Adding avx512 (unpck{h|l}{pd|ps}, rcp14{pd|ps}{128|256},vplzcnt{d|q} ) builtin to clang Differential Revision: http://reviews.llvm.org/D18931 Modified: cfe

r265899 - Correct pg instrumentation for AArch64

2016-04-10 Thread Saleem Abdulrasool via cfe-commits
Author: compnerd Date: Sun Apr 10 09:29:55 2016 New Revision: 265899 URL: http://llvm.org/viewvc/llvm-project?rev=265899&view=rev Log: Correct pg instrumentation for AArch64 It seems that there was a miscommunication between Renato and I, and the original behaviour of AArch64 was to be preserved

Re: [PATCH] RHEL: Look in more places to find g++ headers and runtime

2016-04-10 Thread Rafael EspĂ­ndola via cfe-commits
LGTM with a comment saying why it is needed. Cheers, Rafael On 22 March 2016 at 23:02, Michael Lampe via cfe-commits wrote: > Some distros with ten years of support ship an old gcc but later offer more > recent versions for installation in parallel. These versions are typically > not only neede

r265904 - [Clang][AVX512][BuiltIn] Adding avx512 ( vcvt ) builtin to clang

2016-04-10 Thread Michael Zuckerman via cfe-commits
Author: mzuckerm Date: Sun Apr 10 12:24:03 2016 New Revision: 265904 URL: http://llvm.org/viewvc/llvm-project?rev=265904&view=rev Log: [Clang][AVX512][BuiltIn] Adding avx512 ( vcvt ) builtin to clang Differential Revision: http://reviews.llvm.org/D18932 Modified: cfe/trunk/include/clang/Basi

Re: [PATCH] D15469: Expose cxx constructor and method properties through libclang and python bindings.

2016-04-10 Thread Jonathan B Coe via cfe-commits
jbcoe added a comment. I plan to strip out the `isDeleted` methods as the associated tests now fail (which I need to raise a bug for) and need reworking to apply to non-member functions. I'll submit a new patch for `isDeleted` on its own. The rest of this patch seems uncontentious. I hope to

Re: [PATCH] D18551: Added Fixer implementation and fix() interface in clang-format for removing redundant code.

2016-04-10 Thread Eric Liu via cfe-commits
ioeric updated this revision to Diff 53185. ioeric marked 10 inline comments as done. ioeric added a comment. - Moved constructor initializer fixer to a separate patch; pull runFixer and runFormat into separate classes, and merge common code in CodeProcessor class. http://reviews.llvm.org/D1855

[libcxx] r265914 - Implement LWG#680, which was missed lo these many moons ago, and was reported as bug #27259. As a drive-by fix, replace the hand-rolled equivalent to addressof in __wrap_iter with t

2016-04-10 Thread Marshall Clow via cfe-commits
Author: marshall Date: Sun Apr 10 22:54:53 2016 New Revision: 265914 URL: http://llvm.org/viewvc/llvm-project?rev=265914&view=rev Log: Implement LWG#680, which was missed lo these many moons ago, and was reported as bug #27259. As a drive-by fix, replace the hand-rolled equivalent to addressof i

Re: [PATCH] D10833: Retrieve BinaryOperator::getOpcode and BinaryOperator::getOpcodeStr via libclang and its python interface

2016-04-10 Thread guibufolo+l...@gmail.com via cfe-commits
RedX2501 added a comment. Ping http://reviews.llvm.org/D10833 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D10834: Added functions to retrieve information about whether a vardecl is local in libclang and its python bindings.

2016-04-10 Thread guibufolo+l...@gmail.com via cfe-commits
RedX2501 added a comment. Ping http://reviews.llvm.org/D10834 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D18943: clang-format: [JS] do not insert semicolons after wrapped annotations.

2016-04-10 Thread Daniel Jasper via cfe-commits
djasper added inline comments. Comment at: lib/Format/UnwrappedLineParser.cpp:708 @@ +707,3 @@ + if (Line && Line->Tokens.size() > 1) { +// If the token before the previous one is an '@', the previous token is an +// annotation and can precede another identifier/value. --

Re: [PATCH] D18943: clang-format: [JS] do not insert semicolons after wrapped annotations.

2016-04-10 Thread Martin Probst via cfe-commits
mprobst updated this revision to Diff 53190. mprobst added a comment. - simplify conditions http://reviews.llvm.org/D18943 Files: lib/Format/UnwrappedLineParser.cpp unittests/Format/FormatTestJS.cpp Index: unittests/Format/FormatTestJS.cpp ==

Re: [PATCH] D18943: clang-format: [JS] do not insert semicolons after wrapped annotations.

2016-04-10 Thread Martin Probst via cfe-commits
mprobst marked an inline comment as done. Comment at: lib/Format/UnwrappedLineParser.cpp:708 @@ +707,3 @@ + if (Line && Line->Tokens.size() > 1) { +// If the token before the previous one is an '@', the previous token is an +// annotation and can precede another identifie

[PATCH] D18947: Emit the module hash by default with -flto=thin.

2016-04-10 Thread Mehdi AMINI via cfe-commits
joker.eph created this revision. joker.eph added a reviewer: tejohnson. joker.eph added a subscriber: cfe-commits. Herald added a subscriber: joker.eph. http://reviews.llvm.org/D18947 Files: lib/CodeGen/BackendUtil.cpp Index: lib/CodeGen/BackendUtil.cpp

Re: [PATCH] D18943: clang-format: [JS] do not insert semicolons after wrapped annotations.

2016-04-10 Thread Daniel Jasper via cfe-commits
djasper accepted this revision. djasper added a comment. This revision is now accepted and ready to land. Looks good. Comment at: unittests/Format/FormatTestJS.cpp:689 @@ -688,1 +688,3 @@ "String"); + verifyFormat("function f(@Foo bar) {}"

Re: [PATCH] D18943: clang-format: [JS] do not insert semicolons after wrapped annotations.

2016-04-10 Thread Martin Probst via cfe-commits
mprobst marked 2 inline comments as done. Comment at: unittests/Format/FormatTestJS.cpp:689 @@ -688,1 +688,3 @@ "String"); + verifyFormat("function f(@Foo bar) {}", "function f(@Foo\n" + " bar) {}");

Re: [PATCH] D18073: Add memory allocating functions

2016-04-10 Thread Alexander Riccio via cfe-commits
ariccio updated this revision to Diff 53193. ariccio added a comment. I'm not actually sure why I didn't want to split these off into a separate file, but now I finally have. Is this what you were looking for? http://reviews.llvm.org/D18073 Files: llvm/tools/clang/lib/StaticAnalyzer/Checkers