diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 08:54:42 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 08:54:42 +0000 |
commit | 70b3688e9c3a03ada9fcff2be1aaee620f7ebf3f (patch) | |
tree | c6dea472ff94606cd6667e27998e2ead0841da60 /gcc/config/convex | |
parent | 3080379f7af7f398feb3b7e240b795757db76f2b (diff) | |
download | gcc-70b3688e9c3a03ada9fcff2be1aaee620f7ebf3f.tar.gz |
definitions in config/[c-h]*:
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@36606 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/convex')
-rw-r--r-- | gcc/config/convex/convex.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/convex/convex.h b/gcc/config/convex/convex.h index 2f216f31171..57fc56ee534 100644 --- a/gcc/config/convex/convex.h +++ b/gcc/config/convex/convex.h @@ -1225,15 +1225,15 @@ enum reg_class { /* Output before read-only data. */ -#define TEXT_SECTION_ASM_OP (current_section_is_text = 1, ".text") +#define TEXT_SECTION_ASM_OP (current_section_is_text = 1, "\t.text") /* Output before writable data. */ -#define DATA_SECTION_ASM_OP (current_section_is_text = 0, ".data") +#define DATA_SECTION_ASM_OP (current_section_is_text = 0, "\t.data") /* Output before uninitialized data. */ -#define BSS_SECTION_ASM_OP (current_section_is_text = 0, ".bss") +#define BSS_SECTION_ASM_OP (current_section_is_text = 0, "\t.bss") /* This is how to output an assembler line that says to advance the location counter |