| Index: gcc/gcc/config/i386/sysv4.h
|
| diff --git a/gcc/gcc/config/i386/sysv4.h b/gcc/gcc/config/i386/sysv4.h
|
| index bedac7a58b650e8628b92e9d478a43a261d82499..63c0cbc85a78b1bfacb4eb923e121fb131b4ddc0 100644
|
| --- a/gcc/gcc/config/i386/sysv4.h
|
| +++ b/gcc/gcc/config/i386/sysv4.h
|
| @@ -55,7 +55,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) \
|
| { \
|
| @@ -77,7 +77,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); \
|
| @@ -85,7 +85,7 @@ along with GCC; see the file COPYING3. If not see
|
| } \
|
| } \
|
| if (bytes_in_chunk > 0) \
|
| - fprintf ((FILE), "\n"); \
|
| + fputc ('\n', (FILE)); \
|
| } \
|
| while (0)
|
|
|
| @@ -103,10 +103,10 @@ along with GCC; see the file COPYING3. If not see
|
| do { \
|
| if ((SIZE) == 4 && ((ENCODING) & 0x70) == DW_EH_PE_datarel) \
|
| { \
|
| - fputs (ASM_LONG, FILE); \
|
| - assemble_name (FILE, XSTR (ADDR, 0)); \
|
| - fputs (((ENCODING) & DW_EH_PE_indirect ? "@GOT" : "@GOTOFF"), FILE); \
|
| - goto DONE; \
|
| + fputs (ASM_LONG, (FILE)); \
|
| + assemble_name (FILE, XSTR (ADDR, 0)); \
|
| + fputs (((ENCODING) & DW_EH_PE_indirect ? "@GOT" : "@GOTOFF"), (FILE)); \
|
| + goto DONE; \
|
| } \
|
| } while (0)
|
|
|
|
|