diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-07-31 02:13:35 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-07-31 02:13:35 +0000 |
commit | 506a61b144b1bd438ed18f767d9831bc95d739ac (patch) | |
tree | 821a7e612a3c24f4cf287e43062df4201dbee245 /gcc/config/openbsd.h | |
parent | 072cdaed4f53b143452a0e583133d1b8bca53435 (diff) | |
download | gcc-506a61b144b1bd438ed18f767d9831bc95d739ac.zip gcc-506a61b144b1bd438ed18f767d9831bc95d739ac.tar.gz gcc-506a61b144b1bd438ed18f767d9831bc95d739ac.tar.bz2 |
* alpha.h, arc.h, arm/aout.h, avr.h, cris.h, d30v.h, dsp16xx.h,
fr30.h, h8300.h, i370.h, i386/sco5.h, i386/unix.h, i960.h, ia64.h,
ip2k.h, m32r.h, mcore.h, mips.h, mn10200.h, mn10300.h, ns32k.h,
openbsd.h, pa/pa-linux.h, pdp11.h, romp.h, rs6000/sysv4.h,
s390/linux.h, sh.h, sparc.h, stormy16.h, v850.h, vax.h, xtensa.h:
(ASM_GLOBALIZE_LABEL): Delete.
(GLOBAL_ASM_OP): Define.
From-SVN: r55892
Diffstat (limited to 'gcc/config/openbsd.h')
-rw-r--r-- | gcc/config/openbsd.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gcc/config/openbsd.h b/gcc/config/openbsd.h index efe8d42..ee6b52c 100644 --- a/gcc/config/openbsd.h +++ b/gcc/config/openbsd.h @@ -175,10 +175,12 @@ Boston, MA 02111-1307, USA. */ #undef TYPE_ASM_OP #undef SIZE_ASM_OP #undef SET_ASM_OP +#undef GLOBAL_ASM_OP #define TYPE_ASM_OP "\t.type\t" #define SIZE_ASM_OP "\t.size\t" #define SET_ASM_OP "\t.set\t" +#define GLOBAL_ASM_OP "\t.globl\t" /* The following macro defines the format used to output the second operand of the .type assembler directive. */ @@ -273,14 +275,6 @@ do { \ do { fputs ("\t.weak\t", FILE); assemble_name (FILE, NAME); \ fputc ('\n', FILE); } while (0) #endif - -/* Tell the assembler that a symbol is global. */ -#ifndef ASM_GLOBALIZE_LABEL -#define ASM_GLOBALIZE_LABEL(FILE,NAME) \ - do { fputs ("\t.globl\t", FILE); assemble_name (FILE, NAME); \ - fputc ('\n', FILE); } while(0) -#endif - /* Storage layout. */ |