rs6000.h (ASM_OUTPUT_DEF): New.
* rs6000.h (ASM_OUTPUT_DEF): New. Based on proposed addition from David Edelsohn. From-SVN: r30539
This commit is contained in:
parent
86765ca02c
commit
290ad3550b
@ -1,3 +1,8 @@
|
||||
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. */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user