diff options
author | Richard Henderson <rth@redhat.com> | 2001-08-21 19:04:42 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-08-21 19:04:42 -0700 |
commit | 45d294079fd2183b0f6ea02589d5a639f022eec0 (patch) | |
tree | e2d9b7e6484dc4c1b1c966e78873bfb71a9a697d /gcc/config/ia64 | |
parent | f379eac3fa35f6f4c35940b543fd67fe22a16a54 (diff) | |
download | gcc-45d294079fd2183b0f6ea02589d5a639f022eec0.zip gcc-45d294079fd2183b0f6ea02589d5a639f022eec0.tar.gz gcc-45d294079fd2183b0f6ea02589d5a639f022eec0.tar.bz2 |
sysv4.h (ASM_OUTPUT_LABELREF): Don't emit '#' if ia64_asm_output_label.
* config/ia64/sysv4.h (ASM_OUTPUT_LABELREF): Don't emit '#' if
ia64_asm_output_label.
From-SVN: r45090
Diffstat (limited to 'gcc/config/ia64')
-rw-r--r-- | gcc/config/ia64/sysv4.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/config/ia64/sysv4.h b/gcc/config/ia64/sysv4.h index 86d89ac..da37502 100644 --- a/gcc/config/ia64/sysv4.h +++ b/gcc/config/ia64/sysv4.h @@ -64,7 +64,8 @@ do { \ else \ fputs (user_label_prefix, STREAM); \ fputs (name_, STREAM); \ - fputc ('#', STREAM); \ + if (!ia64_asm_output_label) \ + fputc ('#', STREAM); \ } while (0) /* Intel assembler requires both flags and type if declaring a non-predefined |