llvm-capstone/clang
Takuya Shimizu b8c08f7ae8 [clang][Sema] Fix diagnostic message for unused constant variable templates
BEFORE this patch, unused const-qualified variable templates such as `template <typename T> const double var_t = 0;` were diagnosed as `unused variable 'var_t'`
This patch fixes this message to `unused variable template 'var_t'`

Differential Revision: https://reviews.llvm.org/D152796
2023-06-14 21:43:03 +09:00
..
bindings [NFC][Py Reformat] Reformat python files in clang and clang-tools-extra 2023-05-23 08:29:52 +02:00
cmake [Fuchsia] Pass CursesAndPanel_ROOT through to stage2 2023-06-12 15:43:39 -07:00
docs [clang][Sema] Fix diagnostic message for unused constant variable templates 2023-06-14 21:43:03 +09:00
examples [clang] Add Parse and Sema support for RegularKeyword attributes 2023-05-31 10:43:10 +01:00
include [11/11][Clang][RISCV] Expand all variants for vset on tuple types 2023-06-14 00:10:13 -07:00
lib [clang][Sema] Fix diagnostic message for unused constant variable templates 2023-06-14 21:43:03 +09:00
runtime [CMake] Ensure CLANG_RESOURCE_DIR is respected. 2023-06-03 04:21:35 -07:00
test [clang][Sema] Fix diagnostic message for unused constant variable templates 2023-06-14 21:43:03 +09:00
tools [clang] Use DenseMapBase::lookup (NFC) 2023-06-13 00:24:43 -07:00
unittests [Driver] Enable selecting multiple multilibs 2023-06-14 06:46:41 +01:00
utils [2/11][Clang][RISCV] Expand all variants of RVV intrinsic tuple types 2023-06-13 23:45:31 -07:00
www [C++20] Claim full support for consteval again 2023-06-13 03:50:24 -04:00
.clang-format
.clang-tidy
.gitignore
CMakeLists.txt [clang] set python3 as required build dependency 2023-06-09 07:52:48 +00:00
CodeOwners.rst
INSTALL.txt
LICENSE.TXT
ModuleInfo.txt
NOTES.txt
README.txt

//===----------------------------------------------------------------------===//
// C Language Family Front-end
//===----------------------------------------------------------------------===//

Welcome to Clang.  This is a compiler front-end for the C family of languages
(C, C++, Objective-C, and Objective-C++) which is built as part of the LLVM
compiler infrastructure project.

Unlike many other compiler frontends, Clang is useful for a number of things
beyond just compiling code: we intend for Clang to be host to a number of
different source-level tools.  One example of this is the Clang Static Analyzer.

If you're interested in more (including how to build Clang) it is best to read
the relevant web sites.  Here are some pointers:

Information on Clang:             http://clang.llvm.org/
Building and using Clang:         http://clang.llvm.org/get_started.html
Clang Static Analyzer:            http://clang-analyzer.llvm.org/
Information on the LLVM project:  http://llvm.org/

If you have questions or comments about Clang, a great place to discuss them is
on the Clang forums:
  https://discourse.llvm.org/c/clang/

If you find a bug in Clang, please file it in the LLVM bug tracker:
  http://llvm.org/bugs/