| Index: gcc/gcc/config/i386/i386-interix.h
|
| diff --git a/gcc/gcc/config/i386/i386-interix.h b/gcc/gcc/config/i386/i386-interix.h
|
| index 380b46c3d3c29267aa69a563b4601da7515ca9cf..060b82ca245e4b397c49cb199c2e978ff06d464f 100644
|
| --- a/gcc/gcc/config/i386/i386-interix.h
|
| +++ b/gcc/gcc/config/i386/i386-interix.h
|
| @@ -209,7 +209,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); \
|
| @@ -217,7 +217,7 @@ along with GCC; see the file COPYING3. If not see
|
| } \
|
| } \
|
| if (bytes_in_chunk > 0) \
|
| - fprintf ((FILE), "\n"); \
|
| + fputc ('\n', (FILE)); \
|
| } \
|
| while (0)
|
|
|
| @@ -277,11 +277,11 @@ do { \
|
| #define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \
|
| do \
|
| { \
|
| - fprintf ((FILE), "%s", SET_ASM_OP); \
|
| + fputs (SET_ASM_OP, (FILE)); \
|
| assemble_name (FILE, LABEL1); \
|
| - fprintf (FILE, ","); \
|
| + fputc (',', (FILE)); \
|
| assemble_name (FILE, LABEL2); \
|
| - fprintf (FILE, "\n"); \
|
| + fputc ('\n', (FILE)); \
|
| } \
|
| while (0)
|
|
|
| @@ -359,4 +359,4 @@ extern void i386_pe_unique_section (tree, int);
|
|
|
| #define SUBTARGET_RETURN_IN_MEMORY(TYPE, FNTYPE) \
|
| (TYPE_MODE (TYPE) == BLKmode \
|
| - || (AGGREGATE_TYPE_P (TYPE) && int_size_in_bytes (TYPE) > 8 ))
|
| + || (AGGREGATE_TYPE_P (TYPE) && int_size_in_bytes (TYPE) > 8 ))
|
|
|