aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1994-02-17 22:53:45 +0000
committerDoug Evans <dje@gnu.org>1994-02-17 22:53:45 +0000
commit721822b4903b5437e212fbf4947689ae2073d9ee (patch)
tree92374d8c4ff3194be5c9c7593b74a3bb9d5751a8
parent12dd125a108515225adcd9b1598be76c0b76b817 (diff)
downloadgcc-721822b4903b5437e212fbf4947689ae2073d9ee.zip
gcc-721822b4903b5437e212fbf4947689ae2073d9ee.tar.gz
gcc-721822b4903b5437e212fbf4947689ae2073d9ee.tar.bz2
(asm_output_labelref): Delete.
From-SVN: r6587
-rw-r--r--gcc/config/h8300/h8300.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/gcc/config/h8300/h8300.c b/gcc/config/h8300/h8300.c
index f6ffedb..26f630e 100644
--- a/gcc/config/h8300/h8300.c
+++ b/gcc/config/h8300/h8300.c
@@ -767,34 +767,6 @@ print_operand_address (file, addr)
}
}
-/* Output to FILE a reference to the user-level label NAME.
- Strip off the section name if any. It is separated from the label name
- by a space. */
-
-void
-asm_output_labelref (file, name)
- FILE *file;
- char *name;
-{
- char *p;
-
- fputc ('_', file);
-
- for (p = name; *p; p++)
- {
- if (*p == ' ')
- {
- /* If we found a space in the name, then we've skipped over the
- section encoding. */
- fputs (p + 1, file);
- return;
- }
- }
-
- /* No space, so no section. */
- fputs (name, file);
-}
-
/* Output all insn addresses and their sizes into the assembly language
output file. This is helpful for debugging whether the length attributes
in the md file are correct. This is not meant to be a user selectable