summaryrefslogtreecommitdiff
path: root/gcc/config
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config')
-rw-r--r--gcc/config/arm/thumb.c2
-rw-r--r--gcc/config/m32r/m32r.h2
-rw-r--r--gcc/config/nextstep.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/arm/thumb.c b/gcc/config/arm/thumb.c
index bd302a59665..43082bb2d72 100644
--- a/gcc/config/arm/thumb.c
+++ b/gcc/config/arm/thumb.c
@@ -1732,7 +1732,7 @@ thumb_print_operand (f, x, code)
return;
case '_':
- fputs (USER_LABEL_PREFIX, f);
+ fputs (user_label_prefix, f);
return;
case 'D':
diff --git a/gcc/config/m32r/m32r.h b/gcc/config/m32r/m32r.h
index 12a1a50eafa..d825f989346 100644
--- a/gcc/config/m32r/m32r.h
+++ b/gcc/config/m32r/m32r.h
@@ -1660,7 +1660,7 @@ do { \
do { \
char * real_name; \
STRIP_NAME_ENCODING (real_name, (NAME)); \
- fprintf (FILE, "%s%s", USER_LABEL_PREFIX, real_name); \
+ asm_fprintf (FILE, "%U%s", real_name); \
} while (0)
/* If -Os, don't force line number labels to begin at the beginning of
diff --git a/gcc/config/nextstep.h b/gcc/config/nextstep.h
index a3919f7f023..59050a18a9e 100644
--- a/gcc/config/nextstep.h
+++ b/gcc/config/nextstep.h
@@ -291,7 +291,7 @@ extern int handle_pragma ();
else if (!strncmp (NAME, "_OBJC_", 6)) fprintf (FILE, "L%s", NAME); \
else if (!strncmp (NAME, ".objc_class_name_", 17)) \
fprintf (FILE, "%s", NAME); \
- else fprintf (FILE, "%s%s", USER_LABEL_PREFIX, NAME); } while (0)
+ else asm_fprintf (FILE, "%U%s", NAME); } while (0)
#undef ALIGN_ASM_OP
#define ALIGN_ASM_OP ".align"