llvm-project/clang-tools-extra
Alexander Kornienko 637da9de4c Revert "[clang] template / auto deduction deduces common sugar"
This reverts commit d200db3863, which causes a
clang crash. See https://reviews.llvm.org/D111283#3785755

Test case for convenience:
```
template <typename T>
using P = int T::*;

template <typename T, typename... A>
void j(P<T>, T, A...);

template <typename T>
void j(P<T>, T);

struct S {
  int b;
};
void g(P<S> k, S s) { j(k, s); }
```
2022-09-13 12:18:07 +02:00
..
clang-apply-replacements Fix use-after-free in clang-apply-replacements 2022-08-02 13:34:20 -07:00
clang-change-namespace Use StringRef::contains (NFC) 2022-08-28 23:29:02 -07:00
clang-doc Use llvm::all_of (NFC) 2022-08-14 16:25:36 -07:00
clang-include-fixer [cmake] do not set execution permission to regular files. 2022-09-07 11:04:12 +08:00
clang-move Use llvm::none_of (NFC) 2022-08-14 16:25:39 -07:00
clang-query [clang-query] Add check to prevent setting srcloc when no introspection is available. 2021-04-28 11:21:35 +01:00
clang-reorder-fields Use llvm::sort instead of std::sort where possible 2022-07-23 15:19:05 +02:00
clang-tidy [clang-tidy] Skip union-like classes in use-equals-default 2022-09-06 20:19:47 +00:00
clangd Revert "[clang] template / auto deduction deduces common sugar" 2022-09-13 12:18:07 +02:00
docs [clang-tidy] Skip union-like classes in use-equals-default 2022-09-06 20:19:47 +00:00
include-cleaner [include-cleaner] Fix build error in unit test 2022-06-09 03:38:13 -04:00
modularize Remove unneeded cl::ZeroOrMore for cl::opt/cl::list options 2022-06-05 00:31:44 -07:00
pp-trace [pp-trace] Print HashLoc in InclusionDirective callback 2022-06-03 19:29:59 +08:00
pseudo Drop empty string literals from static_assert (NFC) 2022-09-03 11:17:47 -07:00
test Revert D111509 "[clang] use getCommonSugar in an assortment of places" 2022-09-08 17:09:18 -07:00
tool-template
unittests [clang-doc] Always emit the TagType for RecordInfo 2022-08-12 18:39:20 +00:00
.gitignore
CMakeLists.txt Generalize "check-all" umbrella targets, use for check-clang-tools 2022-05-06 12:30:49 +02:00
CODE_OWNERS.TXT Update the clang and clang-tools-extra code owners files 2022-09-06 08:28:03 -04:00
LICENSE.TXT
README.txt [NFC] update clang-tools-extra README.txt 2022-06-10 16:59:57 +05:30

README.txt

//===----------------------------------------------------------------------===//
// Clang Tools repository
//===----------------------------------------------------------------------===//

Welcome to the repository of extra Clang Tools.  This repository holds tools
that are developed as part of the LLVM compiler infrastructure project and the
Clang frontend.  These tools are kept in a separate "extra" repository to
allow lighter weight checkouts of the core Clang codebase.

All discussion regarding Clang, Clang-based tools, and code in this repository
should be held using the standard Clang forum:
  https://discourse.llvm.org/c/clang

Code review for this tree should take place on the standard Clang patch and
commit lists:
  http://lists.llvm.org/mailman/listinfo/cfe-commits

If you find a bug in these tools, please file it in the LLVM bug tracker:
  https://github.com/llvm/llvm-project/issues/