diff options
author | Richard Stallman <rms@gnu.org> | 1992-03-06 04:30:01 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-03-06 04:30:01 +0000 |
commit | 59be9a360f4c904a4f773d0ead641b5173e3d7ea (patch) | |
tree | 31b456cf596cbded464829555c5db74acf1ff2f7 | |
parent | b8093d021225d5b4d492c34c2c5442868e4767ca (diff) | |
download | gcc-59be9a360f4c904a4f773d0ead641b5173e3d7ea.zip gcc-59be9a360f4c904a4f773d0ead641b5173e3d7ea.tar.gz gcc-59be9a360f4c904a4f773d0ead641b5173e3d7ea.tar.bz2 |
*** empty log message ***
From-SVN: r400
-rw-r--r-- | gcc/config/i386/sun386.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/sun386.h b/gcc/config/i386/sun386.h index 1240081..56c78ee 100644 --- a/gcc/config/i386/sun386.h +++ b/gcc/config/i386/sun386.h @@ -97,7 +97,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Output before writable data. */ -#undef DATA_SECTION_ASSM_OP +#undef DATA_SECTION_ASM_OP #define DATA_SECTION_ASM_OP "\t.data" /* Define the syntax of labels and symbol definitions/declarations. */ @@ -124,7 +124,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ This is suitable for output with `assemble_name'. */ #define ASM_GENERATE_INTERNAL_LABEL(BUF,PREFIX,NUMBER) \ - sprintf ((BUF), ".%s%d", (PREFIX), (NUMBER)) + sprintf ((BUF), "*.%s%d", (PREFIX), (NUMBER)) /* This is how to output a reference to a user-level label named NAME. */ |