public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] x86: Define __APX_F__ for -mapxf
@ 2024-04-04 15:08 H.J. Lu
  2024-04-04 18:46 ` Uros Bizjak
  0 siblings, 1 reply; 2+ messages in thread
From: H.J. Lu @ 2024-04-04 15:08 UTC (permalink / raw)
  To: gcc-patches; +Cc: ubizjak, hongtao.liu

Define __APX_F__ when APX is enabled.

gcc/

	PR target/114587
	* config/i386/i386-c.cc (ix86_target_macros_internal): Define
	__APX_F__ when APX is enabled.

gcc/testsuite/

	PR target/114587
	* gcc.target/i386/apx-2.c: New test.
---
 gcc/config/i386/i386-c.cc             | 2 ++
 gcc/testsuite/gcc.target/i386/apx-2.c | 6 ++++++
 2 files changed, 8 insertions(+)
 create mode 100644 gcc/testsuite/gcc.target/i386/apx-2.c

diff --git a/gcc/config/i386/i386-c.cc b/gcc/config/i386/i386-c.cc
index 114908c7ec0..226d277676c 100644
--- a/gcc/config/i386/i386-c.cc
+++ b/gcc/config/i386/i386-c.cc
@@ -749,6 +749,8 @@ ix86_target_macros_internal (HOST_WIDE_INT isa_flag,
     }
   if (isa_flag2 & OPTION_MASK_ISA2_AVX10_1_512)
     def_or_undef (parse_in, "__AVX10_1_512__");
+  if (isa_flag2 & OPTION_MASK_ISA2_APX_F)
+    def_or_undef (parse_in, "__APX_F__");
   if (TARGET_IAMCU)
     {
       def_or_undef (parse_in, "__iamcu");
diff --git a/gcc/testsuite/gcc.target/i386/apx-2.c b/gcc/testsuite/gcc.target/i386/apx-2.c
new file mode 100644
index 00000000000..2f6439e4b23
--- /dev/null
+++ b/gcc/testsuite/gcc.target/i386/apx-2.c
@@ -0,0 +1,6 @@
+/* { dg-do compile { target { ! ia32 } } } */
+/* { dg-options "-mapxf" } */
+
+#ifndef __APX_F__
+# error __APX_F__ not defined
+#endif
-- 
2.44.0


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-04-04 18:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-04 15:08 [PATCH] x86: Define __APX_F__ for -mapxf H.J. Lu
2024-04-04 18:46 ` Uros Bizjak

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).