* config/bfin/bfin.h (ASM_FORMAT_PRIVATE_NAME): Remove.

From-SVN: r112285
This commit is contained in:
Jie Zhang 2006-03-22 14:53:12 +00:00 committed by Jie Zhang
parent fad41cd7d4
commit f328a23a46
2 changed files with 4 additions and 13 deletions

View File

@ -1,3 +1,7 @@
2006-03-22 Jie Zhang <jie.zhang@analog.com>
* config/bfin/bfin.h (ASM_FORMAT_PRIVATE_NAME): Remove.
2006-03-22 Richard Henderson <rth@redhat.com>
PR middle-end/26084

View File

@ -1064,19 +1064,6 @@ typedef enum directives {
do { fprintf (FILE, "_%s", NAME); \
} while (0)
#define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO) \
do { \
int len = strlen (NAME); \
char *temp = (char *) alloca (len + 4); \
temp[0] = 'L'; \
temp[1] = '_'; \
strcpy (&temp[2], (NAME)); \
temp[len + 2] = '_'; \
temp[len + 3] = 0; \
(OUTPUT) = (char *) alloca (strlen (NAME) + 13); \
sprintf (OUTPUT, "_%s$%d", temp, LABELNO); \
} while (0)
#define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
do { char __buf[256]; \
fprintf (FILE, "\t.dd\t"); \