diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 11:45:51 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 11:45:51 +0000 |
commit | 394765ffb7b534bad0348165a516fd16e3fc8989 (patch) | |
tree | 9646458abedc9e351803234a2c14fdcd5392f146 /gcc/config/freebsd.h | |
parent | 17d8e118179b1833778a96146995aece8cb732da (diff) | |
download | gcc-394765ffb7b534bad0348165a516fd16e3fc8989.tar.gz |
Change callers in config/* to match:
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@36615 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/freebsd.h')
-rw-r--r-- | gcc/config/freebsd.h | 6 |
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) |