Commit 290ad355 by Richard Henderson Committed by Richard Henderson

rs6000.h (ASM_OUTPUT_DEF): New.

        * rs6000.h (ASM_OUTPUT_DEF): New.
        Based on proposed addition from David Edelsohn.

From-SVN: r30539
parent 86765ca0
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>
......
......@@ -2819,6 +2819,17 @@ extern int toc_initialized;
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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment