public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH][GCC][committed] aarch64: fix AARCH64_FL_V9 flag value
@ 2021-10-01 13:03 Przemyslaw Wirkus
  0 siblings, 0 replies; only message in thread
From: Przemyslaw Wirkus @ 2021-10-01 13:03 UTC (permalink / raw)
  To: gcc-patches
  Cc: Marcus Shawcroft, Richard Earnshaw, Kyrylo Tkachov, Richard Sandiford

Patch is fixing AARCH64_FL_V9 flag value which is now wrongly set due to
merge error.

Committed as obvious.

gcc/ChangeLog:

	* config/aarch64/aarch64.h (AARCH64_FL_V9): Update value.

--- 

diff --git a/gcc/config/aarch64/aarch64.h b/gcc/config/aarch64/aarch64.h
index 6908b8f4a16..2792bb29adb 100644
--- a/gcc/config/aarch64/aarch64.h
+++ b/gcc/config/aarch64/aarch64.h
@@ -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)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-10-01 13:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-01 13:03 [PATCH][GCC][committed] aarch64: fix AARCH64_FL_V9 flag value Przemyslaw Wirkus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).