From: Jeffrey A Law Date: Tue, 12 Oct 1999 06:34:49 +0000 (+0000) Subject: Fri Aug 27 19:19:43 CEST 1999 Marc Espie X-Git-Tag: releases/gcc-2.95.2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c4744ba5d17e100309ddaa0a21a19a03d6e06c2;p=thirdparty%2Fgcc.git Fri Aug 27 19:19:43 CEST 1999 Marc Espie Fri Aug 27 19:19:43 CEST 1999 Marc Espie * config/openbsd.h (SET_ASM_OP): Define. From-SVN: r29914 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b3dc17a1cfdd..27006485a78e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ Mon Oct 11 23:35:19 1999 Jeffrey A Law (law@cygnus.com) + Fri Aug 27 19:19:43 CEST 1999 Marc Espie + * config/openbsd.h (SET_ASM_OP): Define. + Mon Oct 4 08:54:12 1999 Alexandre Oliva * cppinit.c (is_idchar initializer): Loosen tests to accept gcc 2.>6 and >2. diff --git a/gcc/config/openbsd.h b/gcc/config/openbsd.h index 30f249423412..e95fbdaea0cc 100644 --- a/gcc/config/openbsd.h +++ b/gcc/config/openbsd.h @@ -165,13 +165,16 @@ Boston, MA 02111-1307, USA. */ /* OpenBSD assembler is hacked to have .type & .size support even in a.out format object files. Functions size are supported but not activated - yet (look for GRACE_PERIOD_EXPIRED in gas/config/obj-aout.c). */ + yet (look for GRACE_PERIOD_EXPIRED in gas/config/obj-aout.c). + SET_ASM_OP is needed for attribute alias to work. */ #undef TYPE_ASM_OP #undef SIZE_ASM_OP +#undef SET_ASM_OP #define TYPE_ASM_OP ".type" #define SIZE_ASM_OP ".size" +#define SET_ASM_OP ".set" /* The following macro defines the format used to output the second operand of the .type assembler directive. */