[clang-tools-extra] r277516 - [clang-tidy] MPITypeMismatchCheck

2016-08-02 Thread Alexander Kornienko via cfe-commits
Author: alexfh Date: Tue Aug 2 15:29:35 2016 New Revision: 277516 URL: http://llvm.org/viewvc/llvm-project?rev=277516&view=rev Log: [clang-tidy] MPITypeMismatchCheck This check verifies if buffer type and MPI (Message Passing Interface) datatype pairs match. All MPI datatypes defined by the MPI

Re: [PATCH] D22419: [CFG] Fix crash in thread sanitizer.

2016-08-02 Thread Devin Coughlin via cfe-commits
dcoughlin accepted this revision. dcoughlin added a comment. This revision is now accepted and ready to land. LGTM. I will commit. Thanks Nandor! https://reviews.llvm.org/D22419 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.ll

[PATCH] D23086: [OpenCL] Generate concrete struct type for ndrange_t

2016-08-02 Thread Aaron En Ye Shi via cfe-commits
ashi1 created this revision. ashi1 added reviewers: bader, Anastasia, yaxunl. ashi1 added a subscriber: cfe-commits. ashi1 set the repository for this revision to rL LLVM. ndrange_t needs to be emitted as a struct type since it has to be allocated on a stack as a local variable or function return

r277522 - [CFG] Fix crash finding destructor of lifetime-extended temporary.

2016-08-02 Thread Devin Coughlin via cfe-commits
Author: dcoughlin Date: Tue Aug 2 16:07:23 2016 New Revision: 277522 URL: http://llvm.org/viewvc/llvm-project?rev=277522&view=rev Log: [CFG] Fix crash finding destructor of lifetime-extended temporary. Fix a crash under -Wthread-safety when finding the destructor for a lifetime-extending referen

Re: [PATCH] D22419: [CFG] Fix crash in thread sanitizer.

2016-08-02 Thread Devin Coughlin via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL277522: [CFG] Fix crash finding destructor of lifetime-extended temporary. (authored by dcoughlin). Changed prior to commit: https://reviews.llvm.org/D22419?vs=65545&id=66554#toc Repository: rL LLVM

[clang-tools-extra] r277523 - [clang-tidy] Fix segfault in cppcore-guidelines-special-member-functions check

2016-08-02 Thread Jonathan Coe via cfe-commits
Author: jbcoe Date: Tue Aug 2 16:18:37 2016 New Revision: 277523 URL: http://llvm.org/viewvc/llvm-project?rev=277523&view=rev Log: [clang-tidy] Fix segfault in cppcore-guidelines-special-member-functions check Summary: Use a set rather than a vector of defined special member functions so that mu

Re: [PATCH] D23008: [clang-tidy] fix segfault in cppcore-guidelines-special-member-functions check

2016-08-02 Thread Jonathan B Coe via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL277523: [clang-tidy] Fix segfault in cppcore-guidelines-special-member-functions check (authored by jbcoe). Changed prior to commit: https://reviews.llvm.org/D23008?vs=66541&id=66558#toc Repository:

Re: [PATCH] D23086: [OpenCL] Generate concrete struct type for ndrange_t

2016-08-02 Thread Yaxun Liu via cfe-commits
yaxunl added a comment. ASTContext::getTypeInfoImpl in lib/AST/ASTContext.cpp needs to be updated for the real size of ndrange_t. Comment at: lib/CodeGen/CGOpenCLRuntime.cpp:43 @@ +42,3 @@ + + return llvm::StructType::create(EleTypes, "ndrange_t"); +} struct n

Re: [PATCH] D23003: [ObjC Availability] Warn upon unguarded use of partially available declaration

2016-08-02 Thread Erik Pilkington via cfe-commits
erik.pilkington updated this revision to Diff 66555. erik.pilkington added a comment. @dcoughlin: Yes, good point! This new patch uses the enclosing version to diagnose both branches of the '*' case, as opposed to ignoring them. https://reviews.llvm.org/D23003 Files: include/clang/AST/Stmt.

Re: r277095 - [Parser] Fix bug where delayed typo in conditional expression was corrected twice

2016-08-02 Thread Erik Pilkington via cfe-commits
Sure, this is a pretty harmless bugfix. Cheers, Erik > On Aug 2, 2016, at 11:05 AM, Hans Wennborg wrote: > > Should we merge this to 3.9? > > Thanks, > Hans > > On Thu, Jul 28, 2016 at 5:55 PM, Erik Pilkington via cfe-commits > wrote: >> Author: epilk >> Date: Thu Jul 28 19:55:40 2016 >> New

Re: r277095 - [Parser] Fix bug where delayed typo in conditional expression was corrected twice

2016-08-02 Thread Hans Wennborg via cfe-commits
Merged in r277525. Thanks, Hans On Tue, Aug 2, 2016 at 2:33 PM, Erik Pilkington via cfe-commits wrote: > Sure, this is a pretty harmless bugfix. > Cheers, > Erik > >> On Aug 2, 2016, at 11:05 AM, Hans Wennborg wrote: >> >> Should we merge this to 3.9? >> >> Thanks, >> Hans >> >> On Thu, Jul 28,

[libcxx] r277526 - [libcxx] basic_regex: add traits_type, string_type

2016-08-02 Thread Hubert Tong via cfe-commits
Author: hubert.reinterpretcast Date: Tue Aug 2 16:34:48 2016 New Revision: 277526 URL: http://llvm.org/viewvc/llvm-project?rev=277526&view=rev Log: [libcxx] basic_regex: add traits_type, string_type Summary: In the synopsis in C++11 subclause 28.8 [re.regex], `basic_regex` is specified to have m

Re: [PATCH] D23042: [CUDA] Do not allow using NVPTX target for host compilation.

2016-08-02 Thread Artem Belevich via cfe-commits
tra added a comment. In https://reviews.llvm.org/D23042#503869, @jlebar wrote: > > Restore assertions for presence of -march flag. > > > We don't need an explicit assertion in TranslateArgs? Nope. The action we create for fatbin uses CudaToolChain, but has nullptr BoundArch and there's no way

Re: [PATCH] D23042: [CUDA] Do not allow using NVPTX target for host compilation.

2016-08-02 Thread Artem Belevich via cfe-commits
tra updated the summary for this revision. tra updated this revision to Diff 66560. tra added a comment. Added a comment describing why we delibrartly error out on use of NVPTX for host compilation. https://reviews.llvm.org/D23042 Files: include/clang/Basic/DiagnosticDriverKinds.td lib/Dri

Re: [PATCH] D23042: [CUDA] Do not allow using NVPTX target for host compilation.

2016-08-02 Thread Artem Belevich via cfe-commits
tra marked an inline comment as done. tra added a comment. https://reviews.llvm.org/D23042 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

r277537 - [CUDA] Do not allow using NVPTX target for host compilation.

2016-08-02 Thread Artem Belevich via cfe-commits
Author: tra Date: Tue Aug 2 17:37:47 2016 New Revision: 277537 URL: http://llvm.org/viewvc/llvm-project?rev=277537&view=rev Log: [CUDA] Do not allow using NVPTX target for host compilation. Differential Revision: https://reviews.llvm.org/D23042 Modified: cfe/trunk/include/clang/Basic/Diagno

Re: [PATCH] D23042: [CUDA] Do not allow using NVPTX target for host compilation.

2016-08-02 Thread Artem Belevich via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL277537: [CUDA] Do not allow using NVPTX target for host compilation. (authored by tra). Changed prior to commit: https://reviews.llvm.org/D23042?vs=66560&id=66578#toc Repository: rL LLVM https://rev

[clang-tools-extra] r277539 - [clang-tidy] Fix missing dependency to static analyzer

2016-08-02 Thread Etienne Bergeron via cfe-commits
Author: etienneb Date: Tue Aug 2 17:51:46 2016 New Revision: 277539 URL: http://llvm.org/viewvc/llvm-project?rev=277539&view=rev Log: [clang-tidy] Fix missing dependency to static analyzer Summary: This patch is fixing the build bot broken for a missing dependency. The missing dependency is bre

Re: [PATCH] D23037: [CUDA] Fix libdevice selection.

2016-08-02 Thread Artem Belevich via cfe-commits
tra updated this revision to Diff 66579. tra added a comment. Now that https://reviews.llvm.org/D23042 / r277537 makes sure that CudaToolchain is only used on device side, we can remove defaults for -march and restore asserts() ensuring that -march is added by the driver. https://reviews.llvm

Re: [PATCH] D23037: [CUDA] Fix libdevice selection.

2016-08-02 Thread Artem Belevich via cfe-commits
tra marked an inline comment as done. tra added a comment. https://reviews.llvm.org/D23037 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

r277542 - [CUDA] Fix libdevice selection.

2016-08-02 Thread Artem Belevich via cfe-commits
Author: tra Date: Tue Aug 2 18:12:51 2016 New Revision: 277542 URL: http://llvm.org/viewvc/llvm-project?rev=277542&view=rev Log: [CUDA] Fix libdevice selection. This makes clang's libdevice selection match that of NVCC as described in http://docs.nvidia.com/cuda/libdevice-users-guide/basic-usage

Re: [PATCH] D23037: [CUDA] Fix libdevice selection.

2016-08-02 Thread Artem Belevich via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL277542: [CUDA] Fix libdevice selection. (authored by tra). Changed prior to commit: https://reviews.llvm.org/D23037?vs=66579&id=66589#toc Repository: rL LLVM https://reviews.llvm.org/D23037 Files:

Re: [PATCH] D18073: Add memory allocating functions

2016-08-02 Thread Devin Coughlin via cfe-commits
dcoughlin added a comment. In https://reviews.llvm.org/D18073#437171, @ariccio wrote: > I should elaborate. The principle of operation of this latest patch is that > the `FunctionDecl` in `IsCMemFunction` should never return a `nullptr` > `IdentifierInfo*` from `getIdentifier` (is that a valid

Re: [PATCH] D22670: MPI-Checker fix two comments

2016-08-02 Thread Devin Coughlin via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL277547: [analyzer] Update two comments in MPI-Checker. NFC. (authored by dcoughlin). Changed prior to commit: https://reviews.llvm.org/D22670?vs=65047&id=66594#toc Repository: rL LLVM https://review

r277547 - [analyzer] Update two comments in MPI-Checker. NFC.

2016-08-02 Thread Devin Coughlin via cfe-commits
Author: dcoughlin Date: Tue Aug 2 18:24:40 2016 New Revision: 277547 URL: http://llvm.org/viewvc/llvm-project?rev=277547&view=rev Log: [analyzer] Update two comments in MPI-Checker. NFC. Correct two comments that do not match the current behavior of the checker. A patch by Alexander Droste! Di

Re: r277542 - [CUDA] Fix libdevice selection.

2016-08-02 Thread Bruno Cardoso Lopes via cfe-commits
Hi Artem, This broke http://lab.llvm.org:8080/green/job/clang-stage1-cmake-RA-incremental_check/26856, can you take a look? Thanks, On Tue, Aug 2, 2016 at 4:12 PM, Artem Belevich via cfe-commits wrote: > Author: tra > Date: Tue Aug 2 18:12:51 2016 > New Revision: 277542 > > URL: http://llvm.o

[PATCH] D23096: [Sema] Pass CombineWithOuterScope = true to constructor of LocalInstantiationScope

2016-08-02 Thread Akira Hatanaka via cfe-commits
ahatanak created this revision. ahatanak added reviewers: rsmith, sepavloff. ahatanak added a subscriber: cfe-commits. This fixes PR28795. https://llvm.org/bugs/show_bug.cgi?id=28795 Sema wasn't replacing DependentScopeDeclRefExpr with DeclRefExpr during template instantiation of the default ar

Re: [PATCH] D20196: [clang-tidy] Inefficient string operation

2016-08-02 Thread Alexander Kornienko via cfe-commits
alexfh accepted this revision. alexfh added a comment. This revision is now accepted and ready to land. Looks good. Thank you for working on this! Do you need me to commit the patch for you? https://reviews.llvm.org/D20196 ___ cfe-commits mailing l

Re: r277542 - [CUDA] Fix libdevice selection.

2016-08-02 Thread Artem Belevich via cfe-commits
Sorry about that. I'll commit the fix shortly. On Tue, Aug 2, 2016 at 4:33 PM, Bruno Cardoso Lopes wrote: > Hi Artem, > > This broke > http://lab.llvm.org:8080/green/job/clang-stage1-cmake-RA-incremental_check/26856 > , > can you take a look? > > Thanks, > > On Tue, Aug 2, 2016 at 4:12 PM, Artem

r277552 - [CUDA] Updated CUDA tests that must run w/o CUDA installation.

2016-08-02 Thread Artem Belevich via cfe-commits
Author: tra Date: Tue Aug 2 18:43:04 2016 New Revision: 277552 URL: http://llvm.org/viewvc/llvm-project?rev=277552&view=rev Log: [CUDA] Updated CUDA tests that must run w/o CUDA installation. Fixes test failures after r277542 on systems that don't have CUDA installed. Modified: cfe/trunk/te

Re: r277542 - [CUDA] Fix libdevice selection.

2016-08-02 Thread Artem Belevich via cfe-commits
CUDA tests should be fixed in r277552. On Tue, Aug 2, 2016 at 4:48 PM, Artem Belevich wrote: > Sorry about that. I'll commit the fix shortly. > > On Tue, Aug 2, 2016 at 4:33 PM, Bruno Cardoso Lopes < > bruno.card...@gmail.com> wrote: > >> Hi Artem, >> >> This broke >> http://lab.llvm.org:8080/

Re: [PATCH] D22853: [clang-rename] add support for template parameter renaming

2016-08-02 Thread Alexander Kornienko via cfe-commits
alexfh added a comment. In https://reviews.llvm.org/D22853#503303, @chapuni wrote: > Seems a couple of tests would be incompatible to -fdelayed-template-parsing. > Appeased in r277452. Thank you! And sorry for the inconvenience. Repository: rL LLVM https://reviews.llvm.org/D22853 _

Re: [PATCH] D22782: Added 'inline' attribute to __init to inline the basic_string's constructor

2016-08-02 Thread Laxman Sole via cfe-commits
laxmansole added a comment. Ping https://reviews.llvm.org/D22782 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D20196: [clang-tidy] Inefficient string operation

2016-08-02 Thread Bittner Barni via cfe-commits
bittnerbarni added a comment. Thank you for all the assistance. Could you please do that? https://reviews.llvm.org/D20196 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D20196: [clang-tidy] Inefficient string operation

2016-08-02 Thread Piotr Padlewski via cfe-commits
Prazek added a subscriber: Prazek. Prazek added a comment. In https://reviews.llvm.org/D20196#504394, @bittnerbarni wrote: > Thank you for all the assistance. Could you please do that? btw obtaining commit access and commiting is very simple, so if you are planning to send us some more cool pa

Re: [PATCH] D20196: [clang-tidy] Inefficient string operation

2016-08-02 Thread Bittner Barni via cfe-commits
bittnerbarni added a comment. I'm planning to submit more patches in the future, as I have time for them. So it wouldn't be in vain :) https://reviews.llvm.org/D20196 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi

Re: [PATCH] D20196: [clang-tidy] Inefficient string operation

2016-08-02 Thread Piotr Padlewski via cfe-commits
Prazek added a comment. In https://reviews.llvm.org/D20196#504397, @bittnerbarni wrote: > I'm planning to submit more patches in the future, as I have time for them. > So it wouldn't be in vain :) http://llvm.org/docs/DeveloperPolicy.html#obtaining-commit-access https://reviews.llvm.org/D201

Re: [PATCH] D22505: clang-format Access Modifier Use Normal Indent

2016-08-02 Thread Daniel Jasper via cfe-commits
djasper added a comment. No, I don't think so. Because you need a "double-indent" within classes. https://reviews.llvm.org/D22505 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D22782: Added 'inline' attribute to __init to inline the basic_string's constructor

2016-08-02 Thread Eric Fiselier via cfe-commits
EricWF added a subscriber: EricWF. EricWF added a comment. The change itself LGTM, although we probably want to inline the forward/input iterator __init's as well. However I would like to see a small benchmark that demonstrates the performance change. Please try and write the benchmark using Go

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-02 Thread Eric Fiselier via cfe-commits
On Sat, Jul 30, 2016 at 1:47 PM, Joerg Sonnenberger via cfe-commits < cfe-commits@lists.llvm.org> wrote: > On Tue, Jul 26, 2016 at 10:30:22PM +, Laxman Sole via cfe-commits > wrote: > > Currently basic_string's destructor is not getting inlined. So adding > 'inline' attribute to ~basic_string(

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-02 Thread Eric Fiselier via cfe-commits
On Mon, Aug 1, 2016 at 2:20 PM, David Blaikie via cfe-commits < cfe-commits@lists.llvm.org> wrote: > > > On Tue, Jul 26, 2016 at 4:37 PM Laxman Sole via cfe-commits < > cfe-commits@lists.llvm.org> wrote: > >> laxmansole created this revision. >> laxmansole added reviewers: mclow.lists, howard.hinn

r277570 - [index] Fix crash with indexing designated init expressions inside templates.

2016-08-02 Thread Argyrios Kyrtzidis via cfe-commits
Author: akirtzidis Date: Wed Aug 3 00:38:53 2016 New Revision: 277570 URL: http://llvm.org/viewvc/llvm-project?rev=277570&view=rev Log: [index] Fix crash with indexing designated init expressions inside templates. rdar://27452869 Modified: cfe/trunk/lib/Index/IndexBody.cpp cfe/trunk/tes

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-02 Thread Eric Fiselier via cfe-commits
EricWF added a subscriber: EricWF. EricWF added a comment. LGTM. However I would like to see a small benchmark that demonstrates the performance change. Please try and write the benchmark using Google Benchmark. Some helpful links: http://libcxx.llvm.org/docs/TestingLibcxx.html#building-benchma

Re: [PATCH] D22818: [libcxx] [test] Silence another occurrence of MSVC's spurious unused warning.

2016-08-02 Thread Eric Fiselier via cfe-commits
EricWF accepted this revision. EricWF added a comment. This revision is now accepted and ready to land. In https://reviews.llvm.org/D22818#496220, @majnemer wrote: > Do we have a way to keep track of this change so we can remove it when MSVC > gets fixed? No, but I'm not concerned about a void

[libcxx] r277572 - Silence another occurrence of MSVC's suprious unused warning. Patch from s...@microsoft.com

2016-08-02 Thread Eric Fiselier via cfe-commits
Author: ericwf Date: Wed Aug 3 00:46:36 2016 New Revision: 277572 URL: http://llvm.org/viewvc/llvm-project?rev=277572&view=rev Log: Silence another occurrence of MSVC's suprious unused warning. Patch from s...@microsoft.com Modified: libcxx/trunk/test/support/test_allocator.h Modified: lib

Re: [PATCH] D22818: [libcxx] [test] Silence another occurrence of MSVC's spurious unused warning.

2016-08-02 Thread Eric Fiselier via cfe-commits
EricWF closed this revision. EricWF added a comment. r277572. https://reviews.llvm.org/D22818 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[libcxx] r277573 - Fix an MSVC x64 compiler warning. Patch from s...@microsoft.com

2016-08-02 Thread Eric Fiselier via cfe-commits
Author: ericwf Date: Wed Aug 3 00:48:09 2016 New Revision: 277573 URL: http://llvm.org/viewvc/llvm-project?rev=277573&view=rev Log: Fix an MSVC x64 compiler warning. Patch from s...@microsoft.com Modified: libcxx/trunk/test/std/utilities/memory/allocator.traits/allocator.traits.members/allo

Re: [PATCH] D22971: [libcxx] [test] Fix an MSVC x64 compiler warning.

2016-08-02 Thread Eric Fiselier via cfe-commits
EricWF closed this revision. EricWF added a comment. r277573. https://reviews.llvm.org/D22971 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[libcxx] r277574 - Fix compile error due to mismatched iterator types. Patch from s...@microsoft.com

2016-08-02 Thread Eric Fiselier via cfe-commits
Author: ericwf Date: Wed Aug 3 00:50:03 2016 New Revision: 277574 URL: http://llvm.org/viewvc/llvm-project?rev=277574&view=rev Log: Fix compile error due to mismatched iterator types. Patch from s...@microsoft.com Modified: libcxx/trunk/test/std/containers/sequences/list/list.cons/initiali

Re: [PATCH] D22972: [libcxx] [test] Fix an MSVC x64 compiler error due to mismatched iterator types.

2016-08-02 Thread Eric Fiselier via cfe-commits
EricWF closed this revision. EricWF added a comment. r277574. https://reviews.llvm.org/D22972 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[libcxx] r277575 - Add MSVC specifics to .gitignore. Patch from s...@microsoft.com

2016-08-02 Thread Eric Fiselier via cfe-commits
Author: ericwf Date: Wed Aug 3 00:51:19 2016 New Revision: 277575 URL: http://llvm.org/viewvc/llvm-project?rev=277575&view=rev Log: Add MSVC specifics to .gitignore. Patch from s...@microsoft.com Modified: libcxx/trunk/.gitignore Modified: libcxx/trunk/.gitignore URL: http://llvm.org/viewv

Re: [PATCH] D22819: [libcxx] [test] Add env.lst and keep.lst to .gitignore for the MSVC libraries test harness.

2016-08-02 Thread Eric Fiselier via cfe-commits
EricWF closed this revision. EricWF added a comment. r277575. https://reviews.llvm.org/D22819 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D22819: [libcxx] [test] Add env.lst and keep.lst to .gitignore for the MSVC libraries test harness.

2016-08-02 Thread Eric Fiselier via cfe-commits
EricWF accepted this revision. EricWF added a comment. This revision is now accepted and ready to land. Why not. https://reviews.llvm.org/D22819 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/c

[PATCH] D23105: [clang/test] Fix a flaky unittest on windows

2016-08-02 Thread Etienne Bergeron via cfe-commits
etienneb created this revision. etienneb added a reviewer: rnk. etienneb added subscribers: chrisha, cfe-commits. The append operator on a shell command for quick command-line is causing trouble on windows. [NFC] The easiest way to fix them is to avoid using them. This patch is an attempt to fix

r277576 - [clang/test] Fix a flaky unittest on windows

2016-08-02 Thread Etienne Bergeron via cfe-commits
Author: etienneb Date: Wed Aug 3 01:10:15 2016 New Revision: 277576 URL: http://llvm.org/viewvc/llvm-project?rev=277576&view=rev Log: [clang/test] Fix a flaky unittest on windows Summary: The append operator on a shell command for quick command-line is causing trouble on windows. [NFC] The easie

Re: [PATCH] D23105: [clang/test] Fix a flaky unittest on windows

2016-08-02 Thread Etienne Bergeron via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL277576: [clang/test] Fix a flaky unittest on windows (authored by etienneb). Changed prior to commit: https://reviews.llvm.org/D23105?vs=66615&id=66616#toc Repository: rL LLVM https://reviews.llvm.o

Re: [PATCH] D21962: MPITypeMismatchCheck for Clang-Tidy

2016-08-02 Thread Alexander Droste via cfe-commits
Alexander_Droste added a comment. Thanks for re-committing this patch! Repository: rL LLVM https://reviews.llvm.org/D21962 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

<    1   2