diff options
author | Marc Espie <espie@openbsd.org> | 2002-05-28 21:24:48 +0000 |
---|---|---|
committer | Marc Espie <espie@gcc.gnu.org> | 2002-05-28 21:24:48 +0000 |
commit | 972957badc39400fb0839db031835c30d090583a (patch) | |
tree | 0cebde885c0f4d3323836c008436d4065cf480f8 | |
parent | cc92b8abf4af2d36a18d4bd12fd2a59901f9b637 (diff) | |
download | gcc-972957badc39400fb0839db031835c30d090583a.zip gcc-972957badc39400fb0839db031835c30d090583a.tar.gz gcc-972957badc39400fb0839db031835c30d090583a.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/openbsd.h | 19 |
2 files changed, 7 insertions, 17 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 95e14f3..68260eb 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/config/i386/openbsd.h b/gcc/config/i386/openbsd.h index 93ff01e..9b7ce3e 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 |