diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-12-21 11:06:48 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-12-21 11:06:48 -0700 |
commit | 14dc90724e789a4630ed78691b78aabb8f294037 (patch) | |
tree | a156e00f059b29c797a20ad2ddb906089a8bb9e0 /gcc | |
parent | dea273dfa15375d0d7e7fe6ad23e3b843fd49b80 (diff) | |
download | gcc-14dc90724e789a4630ed78691b78aabb8f294037.zip gcc-14dc90724e789a4630ed78691b78aabb8f294037.tar.gz gcc-14dc90724e789a4630ed78691b78aabb8f294037.tar.bz2 |
pa.c (output_function_prologue): Use ASM_GENERATE_INTERNAL_LABEL rather than generating one on its own.
* pa.c (output_function_prologue): Use ASM_GENERATE_INTERNAL_LABEL
rather than generating one on its own.
From-SVN: r6251
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 6b677d9..3b6459b 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -2016,7 +2016,8 @@ output_function_prologue (file, size) /* Horrid hack. emit_function_prologue will modify this RTL in place to get the expected results. */ if (profile_flag) - sprintf(hp_profile_label_name, "LP$%04d", hp_profile_labelno); + ASM_GENERATE_INTERNAL_LABEL (hp_profile_label_name, "LP", + hp_profile_labelno); } void |