diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-08-27 21:03:30 +0000 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-08-27 14:03:30 -0700 |
commit | 203cb4ef87f1ac254c1a063f2a9b4d7e1639dd5e (patch) | |
tree | 09f27b8e7b7784806b8871f614829ad5216e9268 /gcc/config/openbsd.h | |
parent | aa0b4465912b2baf8ad8c7e9fb68b6f616036e19 (diff) | |
download | gcc-203cb4ef87f1ac254c1a063f2a9b4d7e1639dd5e.tar.gz |
Marc Espie <espie@cvs.openbsd.org>
* config/openbsd.h: Define SET_ASM_OP.
* tm.texi: cross-reference SET_ASM_OP in the index.
From-SVN: r28938
Diffstat (limited to 'gcc/config/openbsd.h')
-rw-r--r-- | gcc/config/openbsd.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/config/openbsd.h b/gcc/config/openbsd.h index 30f24942341..e95fbdaea0c 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. */ |