| Index: gcc/gcc/config/i386/i386elf.h
|
| diff --git a/gcc/gcc/config/i386/i386elf.h b/gcc/gcc/config/i386/i386elf.h
|
| index ba53749acc9a2ab34578ffc75433f98dd53e8436..44cf6818f7c5fe1e935bcca2f4a2309275adeb76 100644
|
| --- a/gcc/gcc/config/i386/i386elf.h
|
| +++ b/gcc/gcc/config/i386/i386elf.h
|
| @@ -63,7 +63,7 @@ along with GCC; see the file COPYING3. If not see
|
| const unsigned char *limit = _ascii_bytes + (LENGTH); \
|
| unsigned bytes_in_chunk = 0; \
|
| for (; _ascii_bytes < limit; _ascii_bytes++) \
|
| - { \
|
| + { \
|
| const unsigned char *p; \
|
| if (bytes_in_chunk >= 64) \
|
| { \
|
| @@ -85,7 +85,7 @@ along with GCC; see the file COPYING3. If not see
|
| else \
|
| { \
|
| if (bytes_in_chunk == 0) \
|
| - fprintf ((FILE), "\t.byte\t"); \
|
| + fputs (ASM_BYTE, (FILE)); \
|
| else \
|
| fputc (',', (FILE)); \
|
| fprintf ((FILE), "0x%02x", *_ascii_bytes); \
|
| @@ -93,7 +93,7 @@ along with GCC; see the file COPYING3. If not see
|
| } \
|
| } \
|
| if (bytes_in_chunk > 0) \
|
| - fprintf ((FILE), "\n"); \
|
| + fputc ('\n', (FILE)); \
|
| } \
|
| while (0)
|
|
|
|
|