(SET_ASM_OP, ASM_WEAKEN_LABEL): Define.
authorRichard Kenner <kenner@gcc.gnu.org>
Sun, 5 May 1996 17:09:49 +0000 (13:09 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Sun, 5 May 1996 17:09:49 +0000 (13:09 -0400)
From-SVN: r11925

gcc/config/m68k/newsgas.h

index 5e8c3b2..8dc7801 100644 (file)
@@ -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"