x86: bring "gas --help" output for --32 etc in sync with reality
authorJan Beulich <jbeulich@suse.com>
Tue, 15 Jun 2021 06:01:12 +0000 (08:01 +0200)
committerJan Beulich <jbeulich@suse.com>
Tue, 15 Jun 2021 06:01:12 +0000 (08:01 +0200)
The testsuite uses the output to determine whether BFD64 is in effect.

--x32 is supported for ELF only; don't advertise it for PE/COFF. --64 is
also supported for Mach-O; advertise it. Adjust the testsuite's BFD64
check accordingly.

Also replace "code" by "object", since it's the object format that the
options primarily control. It's also _initial_ code bitness, but this
can be changed by directives.

gas/ChangeLog
gas/config/tc-i386.c
gas/testsuite/gas/i386/i386.exp

index d01ba239f3f628abcee2423ef8c25a4b83de794e..be9882a0d0ae888f51f68e774cb1128f7c52ba28 100644 (file)
@@ -1,3 +1,10 @@
+2021-06-15  Jan Beulich  <jbeulich@suse.com>
+
+       * config/tc-i386.c (md_show_usage): Split ELF and PE/COFF parts
+       of object format controlling option. Add Mach-O to the latter.
+       * testsuite/gas/i386/i386.exp (gas_bfd64_check): Adjust
+       accordingly.
+
 2021-06-15  Jan Beulich  <jbeulich@suse.com>
 
        * config/tc-i386.c (disp16, disp32, disp32s): Delete.
index 18187d7bfa1f6a7d7339d067b95cb47376af7bee..168f7d5ba75888eb3c84bcdf6ae5a3aafef85510 100644 (file)
@@ -13719,10 +13719,14 @@ md_show_usage (FILE *stream)
   fprintf (stream, _("\
   -s                      ignored\n"));
 #endif
-#if defined BFD64 && (defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) \
-                     || defined (TE_PE) || defined (TE_PEP))
+#ifdef BFD64
+# if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)
+  fprintf (stream, _("\
+  --32/--64/--x32         generate 32bit/64bit/x32 object\n"));
+# elif defined (TE_PE) || defined (TE_PEP) || defined (OBJ_MACH_O)
   fprintf (stream, _("\
-  --32/--64/--x32         generate 32bit/64bit/x32 code\n"));
+  --32/--64               generate 32bit/64bit object\n"));
+# endif
 #endif
 #ifdef SVR4_COMMENT_CHARS
   fprintf (stream, _("\
index 8f41778034c5a1897c6b52c11df1a37e1d919952..1e0a363a803b5c667cb23941d685dedcaeb3579a 100644 (file)
@@ -41,7 +41,7 @@ proc gas_bfd64_check { } {
     global AS
 
     set status [gas_host_run "$AS --help" ""]
-    return [regexp "32bit/64bit/x32" [lindex $status 1]];
+    return [regexp "32bit/64bit" [lindex $status 1]];
 }
 
 if [gas_32_check] then {