diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2000-09-25 10:24:23 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-09-25 10:24:23 +0000 |
commit | 471b6f1be0ef3538555e4f2bc01a0e6d8ce335bf (patch) | |
tree | ab28b23121e852d6439f10f27423f8e97195e94e /gcc/config/sh | |
parent | 76bbee81601a2978a0263ed90508f7a9bf43189f (diff) | |
download | gcc-471b6f1be0ef3538555e4f2bc01a0e6d8ce335bf.zip gcc-471b6f1be0ef3538555e4f2bc01a0e6d8ce335bf.tar.gz gcc-471b6f1be0ef3538555e4f2bc01a0e6d8ce335bf.tar.bz2 |
definitions in config/[s-w]* (rest):
Changes add TABs on either or both sides, covering start of line,
up to any operand for all .*ASM.*_OP definitions.
From-SVN: r36612
Diffstat (limited to 'gcc/config/sh')
-rw-r--r-- | gcc/config/sh/sh.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index eac8128..a73ebad 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -1837,7 +1837,7 @@ while (0) #define ASM_APP_OFF "" #define FILE_ASM_OP "\t.file\n" #define IDENT_ASM_OP "\t.ident\n" -#define SET_ASM_OP ".set" +#define SET_ASM_OP "\t.set\t" /* How to change between sections. */ @@ -1874,7 +1874,7 @@ dtors_section() \ `-fno-common' is passed, otherwise `ASM_OUTPUT_COMMON' will be used. */ #ifndef BSS_SECTION_ASM_OP -#define BSS_SECTION_ASM_OP ".section\t.bss" +#define BSS_SECTION_ASM_OP "\t.section\t.bss" #endif /* Like `ASM_OUTPUT_BSS' except takes the required alignment as a @@ -2086,8 +2086,8 @@ do { char dstr[30]; \ fprintf ((STREAM), "\t.byte\t%d\n", (VALUE)) \ /* The next two are used for debug info when compiling with -gdwarf. */ -#define UNALIGNED_SHORT_ASM_OP ".uaword" -#define UNALIGNED_INT_ASM_OP ".ualong" +#define UNALIGNED_SHORT_ASM_OP "\t.uaword\t" +#define UNALIGNED_INT_ASM_OP "\t.ualong\t" /* Loop alignment is now done in machine_dependent_reorg, so that branch shortening can know about it. */ |