llvm-capstone/clang
Sander de Smalen 1e5b4db429 [Clang][AArch64] Fix some target guards and remove +sve from tests. (#80681)
The TargetGuard fields for 'svldr[_vnum]_za' and 'svstr[_vnum]_za' were
incorrectly set to `+sve` instead of `+sme`. This means that compiling
code that uses these intrinsics requires compiling for both `+sve` as
well as `+sme`.

This PR also fixes the target guards for the `svadd` and `svsub`
builtins that are enabled under `+sme2,+sme-i16i64` and
`+sme2,+sme-f64f64`, as it initially did the following:
```
  let TargetGuard = "+sme2" in {
    let TargetGuard = "+sme-i16i64" in {
      // Builtins defined here will be predicated only by
      // '+sme-i16i64', and not '+sme2,+sme-i16i64'.
    }
  }
```
This PR also removes `-target-feature +sve` from all the SME tests, to
ensure that the SME features are sufficient to build the tests.

(cherry picked from commit 3d186a77cf1aa979014a6443cb423a633c167d9f)
2024-02-09 13:13:46 -08:00
..
bindings [libclang/python] Bump minimum compatibility to Python 3.6 (#77228) 2024-01-17 01:02:54 -08:00
cmake [CMake][Release] Add option for enabling PGO to release cache file. (#78823) 2024-01-23 11:32:37 -08:00
docs [C++20] [Modules] Introduce -fskip-odr-check-in-gmf (#79959) 2024-02-06 21:30:14 -08:00
examples [clang][examples] Remove unused variable 'key' in LLVMPrintFunctionNames.cpp (NFC) 2023-11-07 13:09:20 +08:00
include [Clang][AArch64] Fix some target guards and remove +sve from tests. (#80681) 2024-02-09 13:13:46 -08:00
lib [Clang][AST] Fix a crash on attaching doc comments (#78716) 2024-02-08 15:59:07 -08:00
runtime
test [Clang][AArch64] Fix some target guards and remove +sve from tests. (#80681) 2024-02-09 13:13:46 -08:00
tools [Format] Fix detection of languages when reading from stdin (#79051) 2024-01-23 13:32:41 -07:00
unittests [clang-format] Fix a bug in AnnotatingParser::rParenEndsCast() (#79549) 2024-02-06 21:26:58 -08:00
utils [CMake][PGO] Add option for using an external project to generate profile data (#78879) 2024-02-06 11:49:07 -08:00
www Revert "[SemaCXX] Implement CWG2137 (list-initialization from objects of the same type) (#77768)" 2024-01-29 14:57:23 -08:00
.clang-format
.clang-tidy [Clang] Revert inintentional changes to cmake committed in 33e5db6e0 2024-01-12 10:59:46 +01:00
.gitignore
CMakeLists.txt Revert "Reland [Clang][CMake] Support perf, LBR, and Instrument CLANG_BOLT options (#69133)" 2024-01-22 14:56:43 -08:00
CodeOwners.rst Update my contact email in CodeOwners.rst 2023-10-23 06:49:57 -07:00
INSTALL.txt
LICENSE.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/