diff options
author | Richard Stallman <rms@gnu.org> | 1992-04-25 01:28:42 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-04-25 01:28:42 +0000 |
commit | aa6b905d086b46e95c3a29dbf64831b883892575 (patch) | |
tree | e03589b5d34405d07d8e87fe0f91576708a62c78 /gcc | |
parent | 1bfe98cbe6c1d8575b71739efeb7e666d6495e08 (diff) | |
download | gcc-aa6b905d086b46e95c3a29dbf64831b883892575.zip gcc-aa6b905d086b46e95c3a29dbf64831b883892575.tar.gz gcc-aa6b905d086b46e95c3a29dbf64831b883892575.tar.bz2 |
*** empty log message ***
From-SVN: r828
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i860/sysv3.h | 4 | ||||
-rw-r--r-- | gcc/config/sparc/sysv4.h | 28 |
2 files changed, 16 insertions, 16 deletions
diff --git a/gcc/config/i860/sysv3.h b/gcc/config/i860/sysv3.h index 562ce98..8756b8c 100644 --- a/gcc/config/i860/sysv3.h +++ b/gcc/config/i860/sysv3.h @@ -24,7 +24,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Provide a set of pre-definitions and pre-assertions appropriate for the i860 running svr3. */ -#define CPP_PREDEFINES "-Di860 -Dunix -DSVR3" +#define CPP_PREDEFINES "-Di860 -Dunix -DSVR3 -D__SVR3__" /* Use crt1.o as a startup file and crtn.o as a closing file. */ @@ -103,7 +103,7 @@ extern char *current_function_original_name; fprintf ((FILE), "\"\n"); \ bytes_in_chunk = 0; \ } \ - fprintf ((FILE), "%s\t%d\n", ASM_BYTE_OP, ch); \ + fprintf ((FILE), "\t%s\t%d\n", ASM_BYTE_OP, ch); \ } \ else \ { \ diff --git a/gcc/config/sparc/sysv4.h b/gcc/config/sparc/sysv4.h index b7b7ffe..2e91601 100644 --- a/gcc/config/sparc/sysv4.h +++ b/gcc/config/sparc/sysv4.h @@ -67,13 +67,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ to keep the Sparc/svr4 assembler somewhat compatible with the Sparc/SunOS assembler. */ -#define STRING_ASM_OP "\t.asciz" -#define COMMON_ASM_OP "\t.common" -#define SKIP_ASM_OP "\t.skip" -#define UNALIGNED_INT_ASM_OP "\t.uaword" -#define UNALIGNED_SHORT_ASM_OP "\t.uahalf" -#define PUSHSECTION_ASM_OP "\t.pushsection" -#define POPSECTION_ASM_OP "\t.popsection" +#define STRING_ASM_OP ".asciz" +#define COMMON_ASM_OP ".common" +#define SKIP_ASM_OP ".skip" +#define UNALIGNED_INT_ASM_OP ".uaword" +#define UNALIGNED_SHORT_ASM_OP ".uahalf" +#define PUSHSECTION_ASM_OP ".pushsection" +#define POPSECTION_ASM_OP ".popsection" /* This is the format used to print the second operand of a .type pseudo-op for the Sparc/svr4 assembler. */ @@ -174,10 +174,10 @@ do { \ *not* to push the previous section name onto the assembler's section names stack (as we do often in dwarfout.c). */ -#define TEXT_SECTION_ASM_OP "\t.section\t\".text\"" -#define DATA_SECTION_ASM_OP "\t.section\t\".data\"" -#define BSS_SECTION_ASM_OP "\t.section\t\".bss\"" -#define CONST_SECTION_ASM_OP "\t.section\t\".rodata\"" -#define INIT_SECTION_ASM_OP "\t.section\t\".init\",#alloc" -#define CTORS_SECTION_ASM_OP "\t.section\t\".ctors\",#alloc" -#define DTORS_SECTION_ASM_OP "\t.section\t\".dtors\",#alloc" +#define TEXT_SECTION_ASM_OP ".section\t\".text\"" +#define DATA_SECTION_ASM_OP ".section\t\".data\"" +#define BSS_SECTION_ASM_OP ".section\t\".bss\"" +#define CONST_SECTION_ASM_OP ".section\t\".rodata\"" +#define INIT_SECTION_ASM_OP ".section\t\".init\",#alloc" +#define CTORS_SECTION_ASM_OP ".section\t\".ctors\",#alloc" +#define DTORS_SECTION_ASM_OP ".section\t\".dtors\",#alloc" |