diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1995-12-18 21:30:53 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1995-12-18 21:30:53 +0000 |
commit | 3d199f7a312e6e0fb59245b6e8da4b8469610307 (patch) | |
tree | 37ab8211d83d2c6d0bd5c9519e2f256d1e061b5f | |
parent | 8fa6b6c92c4b3623f55ff5dc47e1b82d613650a5 (diff) | |
download | gcc-3d199f7a312e6e0fb59245b6e8da4b8469610307.zip gcc-3d199f7a312e6e0fb59245b6e8da4b8469610307.tar.gz gcc-3d199f7a312e6e0fb59245b6e8da4b8469610307.tar.bz2 |
Fix stabs under NT
From-SVN: r10800
-rw-r--r-- | gcc/config/rs6000/rs6000.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index fb6f98f..5de0451 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -2327,7 +2327,7 @@ toc_section () \ This is suitable for output with `assemble_name'. */ #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \ - sprintf (LABEL, "%s..%d", PREFIX, NUM) + sprintf (LABEL, "*%s..%d", PREFIX, NUM) /* This is how to output an assembler line defining a `double' constant. */ |