[clang][aarch64] Drop experimental from __ARM_FEATURE_SVE_BITS macro
authorCullen Rhodes <cullen.rhodes@arm.com>
Thu, 3 Sep 2020 09:19:41 +0000 (09:19 +0000)
committerCullen Rhodes <cullen.rhodes@arm.com>
Thu, 3 Sep 2020 09:39:37 +0000 (09:39 +0000)
commitf9091e56d34fc1a14fe4640b95a691d9ac7afcc4
tree0c5cc7531ffa0ec7f9b887d780f0a99b0ad91eea
parent4c5e4aa89b11ec3253258b8df5125833773d1b1e
[clang][aarch64] Drop experimental from  __ARM_FEATURE_SVE_BITS macro

The __ARM_FEATURE_SVE_BITS feature macro is specified in the Arm C
Language Extensions (ACLE) for SVE [1] (version 00bet5). From the spec,
where __ARM_FEATURE_SVE_BITS==N:

    When N is nonzero, indicates that the implementation is generating
    code for an N-bit SVE target and that the arm_sve_vector_bits(N)
    attribute is available.

This was defined in D83550 as __ARM_FEATURE_SVE_BITS_EXPERIMENTAL and
enabled under the -msve-vector-bits flag to simplify initial tests.
This patch drops _EXPERIMENTAL now there is support for the feature.

[1] https://developer.arm.com/documentation/100987/latest

Reviewed By: david-arm

Differential Revision: https://reviews.llvm.org/D86720
13 files changed:
clang/include/clang/Basic/AttrDocs.td
clang/lib/Basic/Targets/AArch64.cpp
clang/test/CodeGen/attr-arm-sve-vector-bits-bitcast.c
clang/test/CodeGen/attr-arm-sve-vector-bits-call.c
clang/test/CodeGen/attr-arm-sve-vector-bits-cast.c
clang/test/CodeGen/attr-arm-sve-vector-bits-codegen.c
clang/test/CodeGen/attr-arm-sve-vector-bits-globals.c
clang/test/CodeGen/attr-arm-sve-vector-bits-types.c
clang/test/CodeGenCXX/aarch64-mangle-sve-fixed-vectors.cpp
clang/test/CodeGenCXX/aarch64-sve-fixedtypeinfo.cpp
clang/test/Preprocessor/aarch64-target-features.c
clang/test/Sema/attr-arm-sve-vector-bits.c
clang/test/SemaCXX/attr-arm-sve-vector-bits.cpp