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:
Przemyslaw Wirkus 2021-10-01 13:49:51 +01:00
parent 75d053df72
commit 0acdc7fc07

View File

@ -230,8 +230,6 @@ extern unsigned aarch64_architecture_version;
/* Pointer Authentication (PAUTH) extension. */
#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. */
#define AARCH64_FL_LS64 (1ULL << 41)
@ -239,6 +237,9 @@ extern unsigned aarch64_architecture_version;
/* Armv8.7-a architecture extensions. */
#define AARCH64_FL_V8_7 (1ULL << 42)
/* Armv9.0-A. */
#define AARCH64_FL_V9 (1ULL << 43) /* Armv9.0-A Architecture. */
/* Has FP and SIMD. */
#define AARCH64_FL_FPSIMD (AARCH64_FL_FP | AARCH64_FL_SIMD)