* rs6000.h (ASM_OUTPUT_DEF): New.
Based on proposed addition from David Edelsohn.
From-SVN: r30539
+Mon Nov 15 15:33:18 1999 Richard Henderson <rth@cygnus.com>
+
+ * rs6000.h (ASM_OUTPUT_DEF): New.
+ Based on proposed addition from David Edelsohn.
+
1999-11-15 Robert Lipe <RobertLipe@usa.net>
Bruce Korb <autogen@linuxbox.com>
putc ('\n', FILE); \
}
+/* This is how we tell the assembler that two symbols have the same value. */
+
+#define ASM_OUTPUT_DEF(FILE,NAME1,NAME2) \
+do { \
+ fputs("\t.set ", FILE); \
+ assemble_name(FILE, NAME1); \
+ fputc(',', FILE); \
+ assemble_name(FILE, NAME2); \
+ fputc('\n', FILE); \
+} while (0)
+
/* Output to assembler file text saying following lines
may contain character constants, extra white space, comments, etc. */