aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-05-05 13:09:49 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1996-05-05 13:09:49 -0400
commitff858cdf99e1d36f8e2e4324d39d98b940b9685c (patch)
tree9d961fd9535cc8164402f157a2128f508941d176 /gcc
parentfef854565eafa83ee42b729d0af603b894b2ae3c (diff)
downloadgcc-ff858cdf99e1d36f8e2e4324d39d98b940b9685c.zip
gcc-ff858cdf99e1d36f8e2e4324d39d98b940b9685c.tar.gz
gcc-ff858cdf99e1d36f8e2e4324d39d98b940b9685c.tar.bz2
(SET_ASM_OP, ASM_WEAKEN_LABEL): Define.
From-SVN: r11925
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/m68k/newsgas.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/config/m68k/newsgas.h b/gcc/config/m68k/newsgas.h
index 5e8c3b2..8dc7801 100644
--- a/gcc/config/m68k/newsgas.h
+++ b/gcc/config/m68k/newsgas.h
@@ -4,4 +4,16 @@
#define USE_GAS
+/* This is the assembler directive to equate two values. */
+
+#undef SET_ASM_OP
+#define SET_ASM_OP ".set"
+
+/* This is how we tell the assembler that a symbol is weak. */
+
+#undef ASM_WEAKEN_LABEL
+#define ASM_WEAKEN_LABEL(FILE,NAME) \
+ do { fputs ("\t.weak\t", FILE); assemble_name (FILE, NAME); \
+ fputc ('\n', FILE); } while (0)
+
#include "m68k/news.h"