diff 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
line wrap: on
line diff
--- a/gcc/config/i386/i386-interix.h	Sun Feb 07 18:28:00 2010 +0900
+++ b/gcc/config/i386/i386-interix.h	Fri Feb 12 23:39:51 2010 +0900
@@ -209,7 +209,7 @@
 	  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 @@
 	    }								\
 	}								\
       if (bytes_in_chunk > 0)						\
-        fprintf ((FILE), "\n");						\
+        fputc ('\n', (FILE));						\
     }									\
   while (0)
 
@@ -277,11 +277,11 @@
 #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 @@
 
 #define SUBTARGET_RETURN_IN_MEMORY(TYPE, FNTYPE) \
 	(TYPE_MODE (TYPE) == BLKmode \
-	 || (AGGREGATE_TYPE_P (TYPE) && int_size_in_bytes (TYPE) > 8 ))
\ No newline at end of file
+	 || (AGGREGATE_TYPE_P (TYPE) && int_size_in_bytes (TYPE) > 8 ))