mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-30 14:35:11 +08:00
aarch64: fix AARCH64_FL_V9 flag value
Patch is fixing AARCH64_FL_V9 flag value which is now wrongly set due to merge error. gcc/ChangeLog: * config/aarch64/aarch64.h (AARCH64_FL_V9): Update value.
This commit is contained in:
parent
75d053df72
commit
0acdc7fc07
@ -230,8 +230,6 @@ extern unsigned aarch64_architecture_version;
|
|||||||
|
|
||||||
/* Pointer Authentication (PAUTH) extension. */
|
/* Pointer Authentication (PAUTH) extension. */
|
||||||
#define AARCH64_FL_PAUTH (1ULL << 40)
|
#define AARCH64_FL_PAUTH (1ULL << 40)
|
||||||
/* Armv9.0-A. */
|
|
||||||
#define AARCH64_FL_V9 (1ULL << 41) /* Armv9.0-A Architecture. */
|
|
||||||
|
|
||||||
/* 64-byte atomic load/store extensions. */
|
/* 64-byte atomic load/store extensions. */
|
||||||
#define AARCH64_FL_LS64 (1ULL << 41)
|
#define AARCH64_FL_LS64 (1ULL << 41)
|
||||||
@ -239,6 +237,9 @@ extern unsigned aarch64_architecture_version;
|
|||||||
/* Armv8.7-a architecture extensions. */
|
/* Armv8.7-a architecture extensions. */
|
||||||
#define AARCH64_FL_V8_7 (1ULL << 42)
|
#define AARCH64_FL_V8_7 (1ULL << 42)
|
||||||
|
|
||||||
|
/* Armv9.0-A. */
|
||||||
|
#define AARCH64_FL_V9 (1ULL << 43) /* Armv9.0-A Architecture. */
|
||||||
|
|
||||||
/* Has FP and SIMD. */
|
/* Has FP and SIMD. */
|
||||||
#define AARCH64_FL_FPSIMD (AARCH64_FL_FP | AARCH64_FL_SIMD)
|
#define AARCH64_FL_FPSIMD (AARCH64_FL_FP | AARCH64_FL_SIMD)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user