summaryrefslogtreecommitdiff
path: root/gcc/config/i386/openbsd.h
diff options
context:
space:
mode:
authorMarc Espie <espie@openbsd.org>2002-05-28 21:24:48 +0000
committerMarc Espie <espie@gcc.gnu.org>2002-05-28 21:24:48 +0000
commit972957badc39400fb0839db031835c30d090583a (patch)
tree0cebde885c0f4d3323836c008436d4065cf480f8 /gcc/config/i386/openbsd.h
parentcc92b8abf4af2d36a18d4bd12fd2a59901f9b637 (diff)
downloadgcc-972957badc39400fb0839db031835c30d090583a.tar.gz
openbsd.h (HAVE_GAS_MAX_SKIP_P2ALIGN): Remove, inherited from gas.h.
* 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
Diffstat (limited to 'gcc/config/i386/openbsd.h')
-rw-r--r--gcc/config/i386/openbsd.h19
1 files changed, 2 insertions, 17 deletions
diff --git a/gcc/config/i386/openbsd.h b/gcc/config/i386/openbsd.h
index 93ff01e25ca..9b7ce3e4f00 100644
--- a/gcc/config/i386/openbsd.h
+++ b/gcc/config/i386/openbsd.h
@@ -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