aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/avr
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2002-07-31 02:13:35 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2002-07-31 02:13:35 +0000
commit506a61b144b1bd438ed18f767d9831bc95d739ac (patch)
tree821a7e612a3c24f4cf287e43062df4201dbee245 /gcc/config/avr
parent072cdaed4f53b143452a0e583133d1b8bca53435 (diff)
downloadgcc-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/avr')
-rw-r--r--gcc/config/avr/avr.h16
1 files changed, 2 insertions, 14 deletions
diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h
index b2bd755..a405cac 100644
--- a/gcc/config/avr/avr.h
+++ b/gcc/config/avr/avr.h
@@ -2052,20 +2052,8 @@ do { \
If your target assembler doesn't support the .string directive, you
should define this to zero. */
-#define ASM_GLOBALIZE_LABEL(STREAM, NAME) \
-do { \
- fprintf (STREAM, ".global\t"); \
- assemble_name (STREAM, NAME); \
- fprintf (STREAM, "\n"); \
-} \
-while (0)
-
-/* A C statement (sans semicolon) to output to the stdio stream
- STREAM some commands that will make the label NAME global; that
- is, available for reference from other files. Use the expression
- `assemble_name (STREAM, NAME)' to output the name itself; before
- and after that, output the additional assembler syntax for making
- that name global, and a newline. */
+/* Globalizing directive for a label. */
+#define GLOBAL_ASM_OP ".global\t"
#define ASM_WEAKEN_LABEL(FILE, NAME) \
do \