diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2000-09-25 08:08:58 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-09-25 08:08:58 +0000 |
commit | 0a3e1f45d82ea5f7468d0bbfb5bd604e61b8ab53 (patch) | |
tree | eac2e46819d4494fe8318e60b02ff1fb1440a909 /gcc/dwarf2out.c | |
parent | afb2ca3dd73c61acf5f36463dcdb5c04d21d4ec8 (diff) | |
download | gcc-0a3e1f45d82ea5f7468d0bbfb5bd604e61b8ab53.zip gcc-0a3e1f45d82ea5f7468d0bbfb5bd604e61b8ab53.tar.gz gcc-0a3e1f45d82ea5f7468d0bbfb5bd604e61b8ab53.tar.bz2 |
Changes add TABs on either or both sides, covering start of line,
up to any operand for all .*ASM.*_OP definitions.
From-SVN: r36603
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index f061f57..d69d2d0 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -242,18 +242,18 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); #ifdef OBJECT_FORMAT_ELF #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 UNALIGNED_DOUBLE_INT_ASM_OP -#define UNALIGNED_DOUBLE_INT_ASM_OP ".8byte" +#define UNALIGNED_DOUBLE_INT_ASM_OP "\t.8byte\t" #endif #endif /* OBJECT_FORMAT_ELF */ #ifndef ASM_BYTE_OP -#define ASM_BYTE_OP ".byte" +#define ASM_BYTE_OP "\t.byte\t" #endif /* Data and reference forms for relocatable data. */ @@ -262,7 +262,7 @@ static void def_cfa_1 PARAMS ((const char *, dw_cfa_location *)); /* Pseudo-op for defining a new section. */ #ifndef SECTION_ASM_OP -#define SECTION_ASM_OP ".section" +#define SECTION_ASM_OP "\t.section\t" #endif /* The default format used by the ASM_OUTPUT_SECTION macro (see below) to |