[PATCH] D40325: add new check to find OSSpinlock usage

2017-11-27 Thread Yan Zhang via Phabricator via cfe-commits
Wizard updated this revision to Diff 124427. Wizard added a comment. address comments https://reviews.llvm.org/D40325 Files: clang-tidy/objc/AvoidSpinlockCheck.cpp clang-tidy/objc/AvoidSpinlockCheck.h clang-tidy/objc/CMakeLists.txt clang-tidy/objc/ObjCTidyModule.cpp docs/ReleaseNotes.

[PATCH] D40325: add new check to find OSSpinlock usage

2017-11-27 Thread Yan Zhang via Phabricator via cfe-commits
Wizard marked 4 inline comments as done. Wizard added inline comments. Comment at: clang-tidy/objc/CMakeLists.txt:4 add_clang_library(clangTidyObjCModule + AvoidSpinlockCheck.cpp ForbiddenSubclassingCheck.cpp benhamilton wrote: > IMHO this is really a check

[PATCH] D40325: add new check to find OSSpinlock usage

2017-11-27 Thread Ben Hamilton via Phabricator via cfe-commits
benhamilton accepted this revision. benhamilton added inline comments. This revision is now accepted and ready to land. Comment at: clang-tidy/objc/AvoidSpinlockCheck.cpp:31-32 + diag(MatchedExpr->getLocStart(), + "deprecated usage of OSSpinlock; Please use other locks or

[PATCH] D40329: [CMake][Fuchsia] Disable terminfo database in Fuchsia toolchain

2017-11-27 Thread Roland McGrath via Phabricator via cfe-commits
mcgrathr accepted this revision. mcgrathr added a comment. This revision is now accepted and ready to land. lgtm Repository: rL LLVM https://reviews.llvm.org/D40329 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi

r319078 - [OPENMP] Codegen for `distribute parallel for simd` directive.

2017-11-27 Thread Alexey Bataev via cfe-commits
Author: abataev Date: Mon Nov 27 11:38:52 2017 New Revision: 319078 URL: http://llvm.org/viewvc/llvm-project?rev=319078&view=rev Log: [OPENMP] Codegen for `distribute parallel for simd` directive. Added proper codegen for `distribute parallel for simd` directive. Modified: cfe/trunk/lib/Basi

[PATCH] D39457: [OPENMP] Current status of OpenMP support.

2017-11-27 Thread Alexey Bataev via Phabricator via cfe-commits
ABataev updated this revision to Diff 124430. ABataev added a comment. Added codegen for `distribute parallel for simd` construct. https://reviews.llvm.org/D39457 Files: docs/OpenMPSupport.rst docs/index.rst Index: docs/index.rst ===

[libcxx] r319080 - Implement LWG#2921 and LWG#2976 - removing allocator support from packaged_task.

2017-11-27 Thread Marshall Clow via cfe-commits
Author: marshall Date: Mon Nov 27 11:43:28 2017 New Revision: 319080 URL: http://llvm.org/viewvc/llvm-project?rev=319080&view=rev Log: Implement LWG#2921 and LWG#2976 - removing allocator support from packaged_task. Removed: libcxx/trunk/test/std/thread/futures/futures.task/futures.task.memb

[PATCH] D40112: [CodeGen][X86] Fix handling of __fp16 vectors

2017-11-27 Thread Bruno Cardoso Lopes via Phabricator via cfe-commits
bruno added inline comments. Comment at: lib/CodeGen/CGExprScalar.cpp:954 if (DstTy->isFloatingPointTy()) { - if (!CGF.getContext().getLangOpts().HalfArgsAndReturns) + if (CGF.getContext().getTargetInfo().useFP16ConversionIntrinsics()) return Builder.Creat

[PATCH] D40325: add new check to find OSSpinlock usage

2017-11-27 Thread Yan Zhang via Phabricator via cfe-commits
Wizard updated this revision to Diff 124434. Wizard marked 5 inline comments as done. Wizard added a comment. fix doc https://reviews.llvm.org/D40325 Files: clang-tidy/objc/AvoidSpinlockCheck.cpp clang-tidy/objc/AvoidSpinlockCheck.h clang-tidy/objc/CMakeLists.txt clang-tidy/objc/ObjCTid

[PATCH] D40112: [CodeGen][X86] Fix handling of __fp16 vectors

2017-11-27 Thread Akira Hatanaka via Phabricator via cfe-commits
ahatanak added inline comments. Comment at: lib/CodeGen/CGExprScalar.cpp:954 if (DstTy->isFloatingPointTy()) { - if (!CGF.getContext().getLangOpts().HalfArgsAndReturns) + if (CGF.getContext().getTargetInfo().useFP16ConversionIntrinsics()) return Builder.Cr

[PATCH] D40325: add new check to find OSSpinlock usage

2017-11-27 Thread Ben Hamilton via Phabricator via cfe-commits
benhamilton added a comment. Thanks, looks good. Just one question about the test. Comment at: test/clang-tidy/objc-avoid-spinlock.m:4 +typedef int OSSpinLock; +void OSSpinlockTry(OSSpinLock *__lock) {} + Not sure why you declared (and defined?) this one but no

[PATCH] D40513: [libcxx] Support the use of compiler-rt in lit tests

2017-11-27 Thread Petr Hosek via Phabricator via cfe-commits
phosek created this revision. Herald added subscribers: mgorny, dberris. Don't link tests against libgcc when compiler-rt is being used. Repository: rL LLVM https://reviews.llvm.org/D40513 Files: test/CMakeLists.txt test/lit.site.cfg.in utils/libcxx/test/target_info.py Index: utils/l

r319088 - [CMake][Fuchsia] Disable terminfo database in Fuchsia toolchain

2017-11-27 Thread Petr Hosek via cfe-commits
Author: phosek Date: Mon Nov 27 12:29:13 2017 New Revision: 319088 URL: http://llvm.org/viewvc/llvm-project?rev=319088&view=rev Log: [CMake][Fuchsia] Disable terminfo database in Fuchsia toolchain It's used to determine whether terminal supports colors, but within LLVM it's only used in handful o

[PATCH] D40329: [CMake][Fuchsia] Disable terminfo database in Fuchsia toolchain

2017-11-27 Thread Petr Hosek via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL319088: [CMake][Fuchsia] Disable terminfo database in Fuchsia toolchain (authored by phosek). Changed prior to commit: https://reviews.llvm.org/D40329?vs=123875&id=124441#toc Repository: rL LLVM htt

[libcxx] r319091 - Revert commit removing allocator support from packaged_task. Will investigate further

2017-11-27 Thread Marshall Clow via cfe-commits
Author: marshall Date: Mon Nov 27 12:47:54 2017 New Revision: 319091 URL: http://llvm.org/viewvc/llvm-project?rev=319091&view=rev Log: Revert commit removing allocator support from packaged_task. Will investigate further Added: libcxx/trunk/test/std/thread/futures/futures.task/futures.task.

[PATCH] D40325: add new check to find OSSpinlock usage

2017-11-27 Thread Yan Zhang via Phabricator via cfe-commits
Wizard marked an inline comment as done. Wizard added inline comments. Comment at: test/clang-tidy/objc-avoid-spinlock.m:4 +typedef int OSSpinLock; +void OSSpinlockTry(OSSpinLock *__lock) {} + benhamilton wrote: > Not sure why you declared (and defined?) this one

[PATCH] D40325: add new check to find OSSpinlock usage

2017-11-27 Thread Yan Zhang via Phabricator via cfe-commits
Wizard updated this revision to Diff 124448. Wizard added a comment. fix test https://reviews.llvm.org/D40325 Files: clang-tidy/objc/AvoidSpinlockCheck.cpp clang-tidy/objc/AvoidSpinlockCheck.h clang-tidy/objc/CMakeLists.txt clang-tidy/objc/ObjCTidyModule.cpp docs/ReleaseNotes.rst do

[PATCH] D38425: [clangd] Document highlights for clangd

2017-11-27 Thread Marc-Andre Laperle via Phabricator via cfe-commits
malaperle requested changes to this revision. malaperle added a comment. This revision now requires changes to proceed. I tested the patch and it works quite well! I think those are the last comments from me. Sorry, I should have bundled them together a bit more :( Comment at:

[PATCH] D39462: [Sema] Implement -Wmaybe-tautological-constant-compare for when the tautologicalness is data model dependent

2017-11-27 Thread Brian Cain via Phabricator via cfe-commits
bcain added a comment. I'd like to understand/resurrect this change, so I'll try to summarize. Please correct this as appropriate: 1. We got here because libc++ has code that triggers a warning for some targets (those whose `int` and `long` have the same size). 2. This change would "move" the

[PATCH] D40325: add new check to find OSSpinlock usage

2017-11-27 Thread Ben Hamilton via Phabricator via cfe-commits
benhamilton added inline comments. Comment at: test/clang-tidy/objc-avoid-spinlock.m:4 +typedef int OSSpinLock; +void OSSpinlockTry(OSSpinLock *__lock) {} + Wizard wrote: > benhamilton wrote: > > Not sure why you declared (and defined?) this one but not the other

[PATCH] D39462: [Sema] Implement -Wmaybe-tautological-constant-compare for when the tautologicalness is data model dependent

2017-11-27 Thread Roman Lebedev via Phabricator via cfe-commits
lebedev.ri added a comment. In https://reviews.llvm.org/D39462#936566, @bcain wrote: > I'd like to understand/resurrect this change, so I'll try to summarize. > Please correct this as appropriate: > > 1. We got here because libc++ has code that triggers a warning for some > targets (those whos

[PATCH] D40508: Replace long type names in IR with hashes

2017-11-27 Thread Reid Kleckner via Phabricator via cfe-commits
rnk added a comment. It's not clear to me that this abbreviation functionality should live in Support. Clang probably wants enough control over this (assuming we're doing it) that the logic should live in clang. I also think we might want to try solving this a completely different way: just do

[PATCH] D40325: add new check to find OSSpinlock usage

2017-11-27 Thread Yan Zhang via Phabricator via cfe-commits
Wizard updated this revision to Diff 124456. Wizard added a comment. Herald added a subscriber: klimek. fix conflict Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D40325 Files: clang-tidy/objc/AvoidSpinlockCheck.cpp clang-tidy/objc/AvoidSpinlockCheck.h clang-tidy/objc/CMa

[PATCH] D40325: add new check to find OSSpinlock usage

2017-11-27 Thread Yan Zhang via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL319098: add new check to find OSSpinlock usage (authored by Wizard). Repository: rL LLVM https://reviews.llvm.org/D40325 Files: clang-tools-extra/trunk/clang-tidy/objc/AvoidSpinlockCheck.cpp clang

[PATCH] D38425: [clangd] Document highlights for clangd

2017-11-27 Thread William Enright via Phabricator via cfe-commits
Nebiroth updated this revision to Diff 124458. Nebiroth marked 3 inline comments as done. Nebiroth added a comment. Minor code cleanup Fixed highlights sometimes obtaining one too many characters inside range Updated test Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D38425 Fil

[PATCH] D38425: [clangd] Document highlights for clangd

2017-11-27 Thread Marc-Andre Laperle via Phabricator via cfe-commits
malaperle added inline comments. Comment at: clangd/ClangdLSPServer.cpp:246 + + C.reply(json::ary(Highlights->Value)); +} I get a test failure here because there is an assertion that the Expected<> needs to be checked. I can't really think of any failure case r

[PATCH] D24998: Add a new optimization option -Og

2017-11-27 Thread Adrian Prantl via Phabricator via cfe-commits
aprantl added a comment. In https://reviews.llvm.org/D24998#932061, @torarnv wrote: > This seems to have hit a recent Xcode toolchain (Xcode 9.1 ?). > > Xcode now complains that "[app name] was compiled with optimization - > stepping may behave oddly; variables may not be available.", when launc

r319101 - [WebAssemby] Enable "-mthread-model single" by default, for now.

2017-11-27 Thread Dan Gohman via cfe-commits
Author: djg Date: Mon Nov 27 13:39:16 2017 New Revision: 319101 URL: http://llvm.org/viewvc/llvm-project?rev=319101&view=rev Log: [WebAssemby] Enable "-mthread-model single" by default, for now. The WebAssembly standard does not yet have threads, and while it's in the process of being standardize

[PATCH] D40476: Switch kryo to use -mcpu=cortex-a57 when invoking the assembler

2017-11-27 Thread Chad Rosier via Phabricator via cfe-commits
mcrosier added a comment. In https://reviews.llvm.org/D40476#936372, @pirama wrote: > Thanks for the review. Now let's just hope the windows bots stay happy :) Actually, I just checked and it looks like falkor and saphira were both added as of a few weeks ago. I'll revert this part of the pa

[clang-tools-extra] r319098 - add new check to find OSSpinlock usage

2017-11-27 Thread Yan Zhang via cfe-commits
Author: wizard Date: Mon Nov 27 13:30:10 2017 New Revision: 319098 URL: http://llvm.org/viewvc/llvm-project?rev=319098&view=rev Log: add new check to find OSSpinlock usage Summary: This check finds the use of methods related to OSSpinlock in Objective-C code, which should be deprecated due to li

[PATCH] D40256: [ARM] disable FPU features when using soft floating point.

2017-11-27 Thread Eli Friedman via Phabricator via cfe-commits
efriedma added inline comments. Comment at: test/Driver/arm-mfpu.c:301 +// RUN: | FileCheck --check-prefix=CHECK-SOFT-ABI-FP %s +// R-UN: %clang -target armv4-linux-gnueabi -mfloat-abi=soft -mfpu=none %s -### -c 2>&1 \ +// R-UN: | FileCheck --check-prefix=CHECK-SOFT-ABI-FP %

[PATCH] D39347: Fix __has_unique_object_representations based on rsmith's input

2017-11-27 Thread Richard Smith - zygoloid via Phabricator via cfe-commits
rsmith added inline comments. Comment at: lib/AST/ASTContext.cpp:2129-2130 +bool isStructEmpty(QualType Ty) { + assert(Ty.getTypePtr()->isStructureOrClassType() && + "Must be struct or class"); + const RecordDecl *RD = Ty.getTypePtr()->getAs()->getDecl(); --

[libcxx] r319106 - Fix problems with r'890 when building on machines where sizeof(size_t) != sizeof(unsigned long long) and C++03

2017-11-27 Thread Marshall Clow via cfe-commits
Author: marshall Date: Mon Nov 27 14:27:22 2017 New Revision: 319106 URL: http://llvm.org/viewvc/llvm-project?rev=319106&view=rev Log: Fix problems with r'890 when building on machines where sizeof(size_t) != sizeof(unsigned long long) and C++03 Modified: libcxx/trunk/include/bitset lib

[PATCH] D39050: Add index-while-building support to Clang

2017-11-27 Thread Nathan Hawes via Phabricator via cfe-commits
nathawes added a comment. Thanks for the feedback @malaperle! Comment at: include/indexstore/IndexStoreCXX.h:84 + + std::pair getLineCol() { +unsigned line, col; malaperle wrote: > From what I understand, this returns the beginning of the occurrence. It >

[clang-tools-extra] r319111 - Add an option to misc-move-const-arg to not diagnose on trivially copyable types.

2017-11-27 Thread Aaron Ballman via cfe-commits
Author: aaronballman Date: Mon Nov 27 14:59:33 2017 New Revision: 319111 URL: http://llvm.org/viewvc/llvm-project?rev=319111&view=rev Log: Add an option to misc-move-const-arg to not diagnose on trivially copyable types. Patch by Oleg Smolsky Added: clang-tools-extra/trunk/test/clang-tidy/

[PATCH] D31739: Add markup for libc++ dylib availability

2017-11-27 Thread Brian Cain via Phabricator via cfe-commits
bcain added a comment. I think some of the `XFAIL: availability` may be wrong here. I'd submit a patch, but it's not clear to me what the appropriate fix is. Comment at: libcxx/trunk/utils/libcxx/test/config.py:400 +if self.use_system_cxx_lib or self.with_availability

[PATCH] D40527: [libclang] Record parsing invocation to a temporary file when requested by client

2017-11-27 Thread Alex Lorenz via Phabricator via cfe-commits
arphaman created this revision. This patch extends libclang by allowing it to record parsing operations to a temporary JSON file. The file is deleted after parsing succeeds. When a crash happens during parsing, the file is preserved and the client will be able to use it to generate a reproducer

[PATCH] D40453: Add the nvidia-cuda-toolkit Debian package path to search path

2017-11-27 Thread Artem Belevich via Phabricator via cfe-commits
tra requested changes to this revision. tra added a comment. This revision now requires changes to proceed. I'm reluctant to add a distribution-specific search path unconditionally. We do have Distro.IsDebian() https://github.com/llvm-mirror/clang/blob/9f9177d3ef72580ca29e8844327f63d7aa1908af/in

[PATCH] D40528: add new check to find NSError init invocation

2017-11-27 Thread Yan Zhang via Phabricator via cfe-commits
Wizard created this revision. Herald added subscribers: cfe-commits, mgorny, klimek. Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D40528 Files: clang-tidy/objc/AvoidNserrorInitCheck.cpp clang-tidy/objc/AvoidNserrorInitCheck.h clang-tidy/objc/CMakeLists.txt clang-tidy/obj

[PATCH] D40528: add new check to find NSError init invocation

2017-11-27 Thread Yan Zhang via Phabricator via cfe-commits
Wizard updated this revision to Diff 124486. Wizard added a comment. new line for doc Repository: rCTE Clang Tools Extra https://reviews.llvm.org/D40528 Files: clang-tidy/objc/AvoidNserrorInitCheck.cpp clang-tidy/objc/AvoidNserrorInitCheck.h clang-tidy/objc/CMakeLists.txt clang-tidy/

r319116 - [clang-cl] Alias /Wall to -Weverything

2017-11-27 Thread Reid Kleckner via cfe-commits
Author: rnk Date: Mon Nov 27 15:42:20 2017 New Revision: 319116 URL: http://llvm.org/viewvc/llvm-project?rev=319116&view=rev Log: [clang-cl] Alias /Wall to -Weverything cl interprets this option to mean enable every supported warning, which is what Clang's -Weverything flag does. Modified: c

Status of CET support? (Re: [PATCH] D40224:...)

2017-11-27 Thread Kostya Serebryany via cfe-commits
Hi, I see these patches for the CET support in LLVM -- great! Could you please also tell us * what's the status of the Linux Kernel and Glibc support for CET? * how we can start evaluating the hardware feature (simulators, etc)? Thanks! --kcc On Sun, Nov 26, 2017 at 4:35 AM, Phabricator vi

[PATCH] D40275: [CUDA] Report "unsupported VLA" errors only on device side.

2017-11-27 Thread Artem Belevich via Phabricator via cfe-commits
tra added a comment. In https://reviews.llvm.org/D40275#933253, @tra wrote: > @rjmccall : are you OK with this approach? If VLA is not supported by the > target, CUDA is handled as a special case so it can emit deferred diag, > OpenMP reports an error only if shouldDiagnoseTargetSupportFromOpen

[PATCH] D39347: Fix __has_unique_object_representations based on rsmith's input

2017-11-27 Thread Erich Keane via Phabricator via cfe-commits
erichkeane marked 10 inline comments as done. erichkeane added a comment. Patch incoming, I think I got everything. I'll do the error on array of aligned items in a separate patch, hopefully tomorrow AM. Comment at: lib/AST/ASTContext.cpp:2183-2184 + for (const auto *Field :

[PATCH] D39347: Fix __has_unique_object_representations based on rsmith's input

2017-11-27 Thread Erich Keane via Phabricator via cfe-commits
erichkeane updated this revision to Diff 124490. erichkeane marked an inline comment as done. https://reviews.llvm.org/D39347 Files: include/clang/AST/ASTContext.h include/clang/AST/Type.h lib/AST/ASTContext.cpp lib/AST/Type.cpp lib/Sema/SemaExprCXX.cpp test/SemaCXX/type-traits.cpp I

[libcxxabi] r319123 - Insert padding before the __cxa_exception header to ensure the thrown

2017-11-27 Thread Akira Hatanaka via cfe-commits
Author: ahatanak Date: Mon Nov 27 16:36:29 2017 New Revision: 319123 URL: http://llvm.org/viewvc/llvm-project?rev=319123&view=rev Log: Insert padding before the __cxa_exception header to ensure the thrown object is sufficiently aligned. r303175 annotated field unwindHeader of __cxa_exception with

r319129 - [WebAssembly] Add options for using the nontrapping-fptoint feature.

2017-11-27 Thread Dan Gohman via cfe-commits
Author: djg Date: Mon Nov 27 17:13:45 2017 New Revision: 319129 URL: http://llvm.org/viewvc/llvm-project?rev=319129&view=rev Log: [WebAssembly] Add options for using the nontrapping-fptoint feature. This adds ways to control use of WebAssembly's new nontrapping-fptoint feature. Modified: cfe

[PATCH] D39347: Fix __has_unique_object_representations based on rsmith's input

2017-11-27 Thread Richard Smith - zygoloid via Phabricator via cfe-commits
rsmith added inline comments. Comment at: lib/AST/ASTContext.cpp:2238-2240 + // All other pointers are unique. + if (Ty->isPointerType() || Ty->isMemberPointerType()) +return true; erichkeane wrote: > rsmith wrote: > > This is not correct: member pointer re

Buildbot numbers for the week of 11/19/2017 - 11/25/2017

2017-11-27 Thread Galina Kistanova via cfe-commits
Hello everyone, Below are some buildbot numbers for the last week of 11/19/2017 - 11/25/2017. Please see the same data in attached csv files: The longest time each builder was red during the week; "Status change ratio" by active builder (percent of builds that changed the builder status from gre

Buildbot numbers for the week of 11/12/2017 - 11/18/2017

2017-11-27 Thread Galina Kistanova via cfe-commits
Hello everyone, Below are some buildbot numbers for the week of 11/12/2017 - 11/18/2017. Please see the same data in attached csv files: The longest time each builder was red during the week; "Status change ratio" by active builder (percent of builds that changed the builder status from greed to

[PATCH] D40508: Replace long type names in IR with hashes

2017-11-27 Thread John McCall via Phabricator via cfe-commits
rjmccall added a comment. In Swift's IRGen, we have an option controlling whether to emit meaningful value names. That option can be set directly from the command line, but it defaults to whether we're emitting IR assembly (i.e. .ll, not .bc), which means that the clients most interested in ge

r319145 - [test] Fix a typo in a test comment. NFC.

2017-11-27 Thread Martin Storsjo via cfe-commits
Author: mstorsjo Date: Mon Nov 27 21:47:24 2017 New Revision: 319145 URL: http://llvm.org/viewvc/llvm-project?rev=319145&view=rev Log: [test] Fix a typo in a test comment. NFC. Modified: cfe/trunk/test/CodeGenCXX/dllexport.cpp Modified: cfe/trunk/test/CodeGenCXX/dllexport.cpp URL: http://ll

[PATCH] D39279: Stringizing raw string literals containing newline

2017-11-27 Thread Taewook Oh via Phabricator via cfe-commits
twoh updated this revision to Diff 124515. twoh added a comment. Thanks @jkorous-apple for your comments. I modified the type for the variables and replaced unnecessary inserts and erases with updates. https://reviews.llvm.org/D39279 Files: include/clang/Lex/Lexer.h lib/Lex/Lexer.cpp tes

[PATCH] D15729: Load compiler plugins in ASTUnit, too

2017-11-27 Thread Kevin Funk via Phabricator via cfe-commits
kfunk planned changes to this revision. kfunk added a comment. Marking this Diff properly -- it needs more work. https://reviews.llvm.org/D15729 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/c

[clang-tools-extra] r319148 - run-clang-tidy: Use check_call instead of check_output

2017-11-27 Thread Kevin Funk via cfe-commits
Author: kfunk Date: Mon Nov 27 23:17:01 2017 New Revision: 319148 URL: http://llvm.org/viewvc/llvm-project?rev=319148&view=rev Log: run-clang-tidy: Use check_call instead of check_output Summary: Streamlines the output under Python 3.x. Before: ``` b'Enabled checks:\nclang-analyzer-apiModeli

[PATCH] D37482: run-clang-tidy: Use check_call instead of check_output

2017-11-27 Thread Kevin Funk via Phabricator via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL319148: run-clang-tidy: Use check_call instead of check_output (authored by kfunk). Repository: rL LLVM https://reviews.llvm.org/D37482 Files: clang-tools-extra/trunk/clang-tidy/tool/run-clang-tidy.

<    1   2