diff options
Diffstat (limited to 'gnu/usr.bin/gcc/config/netbsd.h')
-rw-r--r-- | gnu/usr.bin/gcc/config/netbsd.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/usr.bin/gcc/config/netbsd.h b/gnu/usr.bin/gcc/config/netbsd.h index 8c0974ade4d..1c3c95ae56e 100644 --- a/gnu/usr.bin/gcc/config/netbsd.h +++ b/gnu/usr.bin/gcc/config/netbsd.h @@ -1,3 +1,5 @@ +/* $OpenBSD: netbsd.h,v 1.2 1996/04/29 07:09:44 niklas Exp $ */ + /* NETBSD_NATIVE is defined when gcc is integrated into the NetBSD source tree so it can be configured appropriately without using the GNU configure/build mechanism. */ @@ -74,16 +76,18 @@ * Currently, we need the DECLARE_OBJECT_SIZE stuff. */ -/* Define the strings used for the special svr4 .type and .size directives. - These strings generally do not vary from one system running svr4 to - another, but if a given system (e.g. m88k running svr) needs to use - different pseudo-op names for these, they may be overridden in the - file which includes this one. */ +/* Define the strings used for the .type, .size, and .set directives. + These strings generally do not vary from one system running netbsd + to another, but if a given system needs to use different pseudo-op + names for these, they may be overridden in the file which includes + this one. */ #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" /* This is how we tell the assembler that a symbol is weak. */ |