diff options
Diffstat (limited to 'gcc/config/nextstep.h')
-rw-r--r-- | gcc/config/nextstep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/nextstep.h b/gcc/config/nextstep.h index 82d8590e53d..28deb16a3cc 100644 --- a/gcc/config/nextstep.h +++ b/gcc/config/nextstep.h @@ -295,7 +295,7 @@ extern int handle_pragma PARAMS ((int(*)(void), void (*)(int), const char *)); #undef ASM_OUTPUT_ALIGN #define ASM_OUTPUT_ALIGN(FILE,LOG) \ if ((LOG) != 0) \ - fprintf (FILE, "\t%s %d\n", ALIGN_ASM_OP, (LOG)) + fprintf (FILE, "%s%d\n", ALIGN_ASM_OP, (LOG)) /* Ensure correct alignment of bss data. */ |