summaryrefslogtreecommitdiff
path: root/gcc/config/i386/darwin.h
diff options
context:
space:
mode:
authoriains <iains@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-30 16:43:45 +0000
committeriains <iains@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-30 16:43:45 +0000
commit163c9fff10da83b267cca88560d99bf4a7c68cf7 (patch)
tree274537cb853d4c6d03f645037a0bd59508744748 /gcc/config/i386/darwin.h
parent420252ac3750e53524523bd1b900f34f853b6b78 (diff)
downloadgcc-163c9fff10da83b267cca88560d99bf4a7c68cf7.tar.gz
2010-05-30 Iain Sandoe <iains@gcc.gnu.org>
* config/darwin.c (output_objc_section_asm_op): Add comment. (name_needs_quotes): Add '_' to list of valid comment chars. (machopic_output_function_base_name): Remove unneeded quotes. (darwin_encode_section_info): Adjust asm whitespace. * config/i386/darwin.h (ASM_OUTPUT_COMMON): Adjust asm tabs. (ASM_OUTPUT_LOCAL): Ditto. * config/rs6000/darwin.h (ASM_OUTPUT_COMMON): Ditto. * config/darwin.h (GLOBAL_ASM_OP): Ditto. * config/darwin9.h (ASM_OUTPUT_ALIGNED_COMMON): Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160058 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/darwin.h')
-rw-r--r--gcc/config/i386/darwin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/darwin.h b/gcc/config/i386/darwin.h
index f2c8984ab84..d26ef2d422d 100644
--- a/gcc/config/i386/darwin.h
+++ b/gcc/config/i386/darwin.h
@@ -209,7 +209,7 @@ along with GCC; see the file COPYING3. If not see
to define a global common symbol. */
#define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
-( fputs (".comm ", (FILE)), \
+( fputs ("\t.comm ", (FILE)), \
assemble_name ((FILE), (NAME)), \
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED"\n", (ROUNDED)))
@@ -217,7 +217,7 @@ along with GCC; see the file COPYING3. If not see
to define a local common symbol. */
#define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) \
-( fputs (".lcomm ", (FILE)), \
+( fputs ("\t.lcomm ", (FILE)), \
assemble_name ((FILE), (NAME)), \
fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED"\n", (ROUNDED)))