summaryrefslogtreecommitdiff
path: root/gcc/config/freebsd.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/freebsd.h')
-rw-r--r--gcc/config/freebsd.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/freebsd.h b/gcc/config/freebsd.h
index 69312fa42d5..7e8f035d1f8 100644
--- a/gcc/config/freebsd.h
+++ b/gcc/config/freebsd.h
@@ -109,18 +109,18 @@ Boston, MA 02111-1307, USA. */
/* Output #ident as a .ident. */
#undef ASM_OUTPUT_IDENT
#define ASM_OUTPUT_IDENT(FILE, NAME) \
- fprintf ((FILE), "\t%s\t\"%s\"\n", IDENT_ASM_OP, (NAME));
+ fprintf ((FILE), "%s\"%s\"\n", IDENT_ASM_OP, (NAME));
#undef ASM_IDENTIFY_LANGUAGE
#define ASM_IDENTIFY_LANGUAGE(FILE) \
- fprintf ((FILE), "\t%s \"GCC (%s) %s\"\n", IDENT_ASM_OP, \
+ fprintf ((FILE), "%s\"GCC (%s) %s\"\n", IDENT_ASM_OP, \
lang_identify (), version_string)
#undef ASM_FILE_END
#define ASM_FILE_END(FILE) \
do { \
if (!flag_no_ident) \
- fprintf ((FILE), "\t%s\t\"GCC: (GNU) %s\"\n", \
+ fprintf ((FILE), "%s\"GCC: (GNU) %s\"\n", \
IDENT_ASM_OP, version_string); \
} while (0)