comparison gcc/config/i386/i386-interix.h @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents a06113de4d67
children f6334be47118
comparison
equal deleted inserted replaced
52:c156f1bd5cd9 55:77e2b8dfacca
207 _ascii_bytes = p; \ 207 _ascii_bytes = p; \
208 } \ 208 } \
209 else \ 209 else \
210 { \ 210 { \
211 if (bytes_in_chunk == 0) \ 211 if (bytes_in_chunk == 0) \
212 fprintf ((FILE), "\t.byte\t"); \ 212 fputs (ASM_BYTE, (FILE)); \
213 else \ 213 else \
214 fputc (',', (FILE)); \ 214 fputc (',', (FILE)); \
215 fprintf ((FILE), "0x%02x", *_ascii_bytes); \ 215 fprintf ((FILE), "0x%02x", *_ascii_bytes); \
216 bytes_in_chunk += 5; \ 216 bytes_in_chunk += 5; \
217 } \ 217 } \
218 } \ 218 } \
219 if (bytes_in_chunk > 0) \ 219 if (bytes_in_chunk > 0) \
220 fprintf ((FILE), "\n"); \ 220 fputc ('\n', (FILE)); \
221 } \ 221 } \
222 while (0) 222 while (0)
223 223
224 /* Emit code to check the stack when allocating more that 4000 224 /* Emit code to check the stack when allocating more that 4000
225 bytes in one go. */ 225 bytes in one go. */
275 #define SET_ASM_OP "\t.set\t" 275 #define SET_ASM_OP "\t.set\t"
276 /* Output a definition (implements alias) */ 276 /* Output a definition (implements alias) */
277 #define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \ 277 #define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \
278 do \ 278 do \
279 { \ 279 { \
280 fprintf ((FILE), "%s", SET_ASM_OP); \ 280 fputs (SET_ASM_OP, (FILE)); \
281 assemble_name (FILE, LABEL1); \ 281 assemble_name (FILE, LABEL1); \
282 fprintf (FILE, ","); \ 282 fputc (',', (FILE)); \
283 assemble_name (FILE, LABEL2); \ 283 assemble_name (FILE, LABEL2); \
284 fprintf (FILE, "\n"); \ 284 fputc ('\n', (FILE)); \
285 } \ 285 } \
286 while (0) 286 while (0)
287 287
288 #define HOST_PTR_AS_INT unsigned long 288 #define HOST_PTR_AS_INT unsigned long
289 289