mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-16 13:30:44 +08:00
sdbout.c (PUT_SDB_DEF, [...]): Replace ASM_OUTPUT_LABELREF with assemble_name.
* sdbout.c (PUT_SDB_DEF, PUT_SDB_TAG, PUT_SDB_EPILOGUE_END): Replace ASM_OUTPUT_LABELREF with assemble_name. From-SVN: r36513
This commit is contained in:
parent
50ceefc2f5
commit
800a6a0ca9
@ -1,3 +1,8 @@
|
||||
Mon Sep 18 21:00:47 2000 J"orn Rennecke <amylaar@redhat.co.uk>
|
||||
|
||||
* sdbout.c (PUT_SDB_DEF, PUT_SDB_TAG, PUT_SDB_EPILOGUE_END):
|
||||
Replace ASM_OUTPUT_LABELREF with assemble_name.
|
||||
|
||||
Mon Sep 18 20:26:50 2000 J"orn Rennecke <amylaar@redhat.co.uk>
|
||||
|
||||
* sh.c (addsubcosts): CONST is not cheap.
|
||||
|
11
gcc/sdbout.c
11
gcc/sdbout.c
@ -161,9 +161,14 @@ static void sdbout_reg_parms PARAMS ((tree));
|
||||
|
||||
#ifndef PUT_SDB_DEF
|
||||
#define PUT_SDB_DEF(a) \
|
||||
|
||||
#undef PUT_SDB_DEF
|
||||
PUT_SDB_DEF(a) \
|
||||
char *a; {
|
||||
do { fprintf (asm_out_file, "\t.def\t"); \
|
||||
ASM_OUTPUT_LABELREF (asm_out_file, a); \
|
||||
assemble_name (asm_out_file, a); \
|
||||
fprintf (asm_out_file, SDB_DELIM); } while (0)
|
||||
; }
|
||||
#endif
|
||||
|
||||
#ifndef PUT_SDB_PLAIN_DEF
|
||||
@ -202,7 +207,7 @@ do { fprintf (asm_out_file, "\t.def\t"); \
|
||||
#ifndef PUT_SDB_TAG
|
||||
#define PUT_SDB_TAG(a) \
|
||||
do { fprintf (asm_out_file, "\t.tag\t"); \
|
||||
ASM_OUTPUT_LABELREF (asm_out_file, a); \
|
||||
assemble_name (asm_out_file, a); \
|
||||
fprintf (asm_out_file, SDB_DELIM); } while (0)
|
||||
#endif
|
||||
|
||||
@ -237,7 +242,7 @@ do { fprintf (asm_out_file, "\t.tag\t"); \
|
||||
#ifndef PUT_SDB_EPILOGUE_END
|
||||
#define PUT_SDB_EPILOGUE_END(NAME) \
|
||||
do { fprintf (asm_out_file, "\t.def\t"); \
|
||||
ASM_OUTPUT_LABELREF (asm_out_file, NAME); \
|
||||
assemble_name (asm_out_file, NAME); \
|
||||
fprintf (asm_out_file, \
|
||||
"%s\t.val\t.%s\t.scl\t-1%s\t.endef\n", \
|
||||
SDB_DELIM, SDB_DELIM, SDB_DELIM); } while (0)
|
||||
|
Loading…
Reference in New Issue
Block a user