diff options
author | Philip Blundell <philb@gnu.org> | 2001-04-08 19:55:04 +0000 |
---|---|---|
committer | Phil Blundell <pb@gcc.gnu.org> | 2001-04-08 19:55:04 +0000 |
commit | d4206a103e5802e1f165dcffd7127401ab4cc0f6 (patch) | |
tree | 2a8ac3f83c2f327e0801b44c2e21d7eacd8799c5 /gcc | |
parent | 0f7190689e4fb7c4bb67eddb61a8c0feeda76830 (diff) | |
download | gcc-d4206a103e5802e1f165dcffd7127401ab4cc0f6.zip gcc-d4206a103e5802e1f165dcffd7127401ab4cc0f6.tar.gz gcc-d4206a103e5802e1f165dcffd7127401ab4cc0f6.tar.bz2 |
arm.h (ASM_OUTPUT_LABELREF): Use asm_fprintf.
2001-04-08 Philip Blundell <philb@gnu.org>
* config/arm/arm.h (ASM_OUTPUT_LABELREF): Use asm_fprintf.
From-SVN: r41191
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/arm/arm.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b6eddb5..4c2a710 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-04-08 Philip Blundell <philb@gnu.org> + + * config/arm/arm.h (ASM_OUTPUT_LABELREF): Use asm_fprintf. + 2001-04-08 Neil Booth <neil@daikokuya.demon.co.uk> * cpperror.c (print_location): Don't special case <stdin>. diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 3332c22..4387193 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -1929,7 +1929,7 @@ typedef struct `assemble_name' uses this. */ #undef ASM_OUTPUT_LABELREF #define ASM_OUTPUT_LABELREF(FILE, NAME) \ - fprintf (FILE, "%s%s", USER_LABEL_PREFIX, arm_strip_name_encoding (NAME)) + asm_fprintf (FILE, "%U%s", arm_strip_name_encoding (NAME)) /* If we are referencing a function that is weak then encode a long call flag in the function name, otherwise if the function is static or |