diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 08:08:58 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 08:08:58 +0000 |
commit | 6ae8577b639265a722fae97f3d5ced6ad1003c56 (patch) | |
tree | eac2e46819d4494fe8318e60b02ff1fb1440a909 /gcc/dwarfout.c | |
parent | c678903bbbf0cc57d4c40320cb24e8a1df687fc8 (diff) | |
download | gcc-6ae8577b639265a722fae97f3d5ced6ad1003c56.tar.gz |
Changes add TABs on either or both sides, covering start of line,
up to any operand for all .*ASM.*_OP definitions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36603 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarfout.c')
-rw-r--r-- | gcc/dwarfout.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index 098fbd8d024..0e14e8aea37 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -387,22 +387,22 @@ static void retry_incomplete_types PARAMS ((void)); what is expected by "standard" AT&T System V.4 assemblers. */ #ifndef FILE_ASM_OP -#define FILE_ASM_OP ".file" +#define FILE_ASM_OP "\t.file\t" #endif #ifndef VERSION_ASM_OP -#define VERSION_ASM_OP ".version" +#define VERSION_ASM_OP "\t.version\t" #endif #ifndef UNALIGNED_SHORT_ASM_OP -#define UNALIGNED_SHORT_ASM_OP ".2byte" +#define UNALIGNED_SHORT_ASM_OP "\t.2byte\t" #endif #ifndef UNALIGNED_INT_ASM_OP -#define UNALIGNED_INT_ASM_OP ".4byte" +#define UNALIGNED_INT_ASM_OP "\t.4byte\t" #endif #ifndef ASM_BYTE_OP -#define ASM_BYTE_OP ".byte" +#define ASM_BYTE_OP "\t.byte\t" #endif #ifndef SET_ASM_OP -#define SET_ASM_OP ".set" +#define SET_ASM_OP "\t.set\t" #endif /* Pseudo-ops for pushing the current section onto the section stack (and @@ -414,10 +414,10 @@ static void retry_incomplete_types PARAMS ((void)); OK because we only use at most one level of the section stack herein. */ #ifndef PUSHSECTION_ASM_OP -#define PUSHSECTION_ASM_OP ".section" +#define PUSHSECTION_ASM_OP "\t.section\t" #endif #ifndef POPSECTION_ASM_OP -#define POPSECTION_ASM_OP ".previous" +#define POPSECTION_ASM_OP "\t.previous" #endif /* The default format used by the ASM_OUTPUT_PUSH_SECTION macro (see below) |