diff options
author | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-18 20:00:58 +0000 |
---|---|---|
committer | amylaar <amylaar@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-18 20:00:58 +0000 |
commit | 3de7e2d97506d5d63f2bbce79296506700e0d10a (patch) | |
tree | 24267d274325acad57bb01c99709173d56b800d9 /gcc/sdbout.c | |
parent | 0d93aeb07fe9d47b5d16a5bcc9187f2e1d573b3e (diff) | |
download | gcc-3de7e2d97506d5d63f2bbce79296506700e0d10a.tar.gz |
* sdbout.c (PUT_SDB_DEF, PUT_SDB_TAG, PUT_SDB_EPILOGUE_END):
Replace ASM_OUTPUT_LABELREF with assemble_name.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36513 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r-- | gcc/sdbout.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c index 0461b384065..c75aa848a39 100644 --- a/gcc/sdbout.c +++ b/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) |