openbsd.h (HAVE_GAS_MAX_SKIP_P2ALIGN): Remove, inherited from gas.h.
authorMarc Espie <espie@openbsd.org>
Tue, 28 May 2002 21:24:48 +0000 (21:24 +0000)
committerMarc Espie <espie@gcc.gnu.org>
Tue, 28 May 2002 21:24:48 +0000 (21:24 +0000)
* config/i386/openbsd.h (HAVE_GAS_MAX_SKIP_P2ALIGN):  Remove,
inherited from gas.h.
(ASM_QUAD):  Undef.  OpenBSD does not support it.

From-SVN: r53971

gcc/ChangeLog
gcc/config/i386/openbsd.h

index 95e14f3efa5ab9e5f8558cc99454c1ddd7018a93..68260ebc60366056ca859003df75b8a250ba89b2 100644 (file)
@@ -1,3 +1,8 @@
+2002-05-28     Marc Espie <espie@openbsd.org>
+       * config/i386/openbsd.h (HAVE_GAS_MAX_SKIP_P2ALIGN):  Remove, 
+       inherited from gas.h.
+       (ASM_QUAD):  Undef.  OpenBSD does not support it.
+
 2002-05-28  Danny Smith  <dannysmith@users.sourceforge.net>
 
        * doc/install.texi (binaries): Change mingw binaries
index 93ff01e25ca8ef69f73c26f525e2b9798669fad3..9b7ce3e4f00a39584ef2b14e0e3f65bc2058afa2 100644 (file)
@@ -89,26 +89,11 @@ Boston, MA 02111-1307, USA.  */
 
 #undef ASM_PREFERRED_EH_DATA_FORMAT
 
-/* Assembler format: alignment output.  */
-
-/* A C statement to output to the stdio stream FILE an assembler
-   command to advance the location counter to a multiple of 1<<LOG
-   bytes if it is within MAX_SKIP bytes.
-
-   This will be used to align code labels according to Intel 
-   recommendations, in prevision of binutils upgrade.  */
-#ifdef HAVE_GAS_MAX_SKIP_P2ALIGN
-#define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE,LOG,MAX_SKIP)                   \
-  do {                                                                 \
-    if ((LOG) != 0) {                                                  \
-      if ((MAX_SKIP) == 0) fprintf ((FILE), "\t.p2align %d\n", (LOG)); \
-      else fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \
-    }                                                                  \
-  } while (0)
-#endif
 
 /* Note that we pick up ASM_OUTPUT_MI_THUNK from unix.h.  */
 
 #undef ASM_COMMENT_START
 #define ASM_COMMENT_START ";#"
 
+/* OpenBSD gas currently does not support quad, so do not use it.  */
+#undef ASM_QUAD