This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[ColdFire 1/63] Retabulate TARGET_CPU_CPP_BUILTINS


Some of the later patches add lines to TARGET_CPU_CPP_BUITINS that
stretch beyond the current backslash column.  This patch simply makes
room for them by moving the column to the right.  The patch is obvious
if the later patches are OK, but I'm posting it separately for ease
of review.

Richard


gcc/
	* config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Increase amount
	of tabbing before backslashes.

Index: gcc/config/m68k/m68k.h
===================================================================
--- gcc/config/m68k/m68k.h	2007-01-09 15:01:43.000000000 +0000
+++ gcc/config/m68k/m68k.h	2007-01-09 15:01:44.000000000 +0000
@@ -35,70 +35,70 @@ the Free Software Foundation; either ver
 /* Note that some other tm.h files include this one and then override
    many of the definitions that relate to assembler syntax.  */
 
-#define TARGET_CPU_CPP_BUILTINS()		\
-  do						\
-    {						\
-      builtin_define ("__m68k__");		\
-      builtin_define_std ("mc68000");		\
-      if (TARGET_68040_ONLY)			\
-	{					\
-	  if (TARGET_68060)			\
-	    builtin_define_std ("mc68060");	\
-	  else					\
-	    builtin_define_std ("mc68040");	\
-	}					\
-      else if (TARGET_68060) /* -m68020-60 */	\
-	{					\
-	  builtin_define_std ("mc68060");	\
-	  builtin_define_std ("mc68040");	\
-	  builtin_define_std ("mc68030");	\
-	  builtin_define_std ("mc68020");	\
-	}					\
-      else if (TARGET_68040) /* -m68020-40 */	\
-	{					\
-	  builtin_define_std ("mc68040");	\
-	  builtin_define_std ("mc68030");	\
-	  builtin_define_std ("mc68020");	\
-	}					\
-      else if (TARGET_68030)			\
-	builtin_define_std ("mc68030");		\
-      else if (TARGET_68020)			\
-	builtin_define_std ("mc68020");		\
-      if (TARGET_68881)				\
-	builtin_define ("__HAVE_68881__");	\
-      if (TARGET_CPU32)				\
-	{					\
-	  builtin_define_std ("mc68332");	\
-	  builtin_define_std ("mcpu32");	\
-	}					\
-      if (TARGET_COLDFIRE)			\
-	builtin_define ("__mcoldfire__");	\
-      if (TARGET_5200)				\
-	builtin_define ("__mcf5200__");		\
-      if (TARGET_528x)				\
-	{					\
-	  builtin_define ("__mcf528x__");	\
-	  builtin_define ("__mcf5200__");	\
-	}					\
-      if (TARGET_CFV3)				\
-	{					\
-	  builtin_define ("__mcf5300__");	\
-	  builtin_define ("__mcf5307__");	\
-	}					\
-      if (TARGET_CFV4)				\
-	{					\
-	  builtin_define ("__mcf5400__");	\
-	  builtin_define ("__mcf5407__");	\
-	}					\
-      if (TARGET_CFV4E)				\
-	{					\
-	  builtin_define ("__mcfv4e__");	\
-	}					\
-      if (TARGET_CF_HWDIV)			\
-	builtin_define ("__mcfhwdiv__");	\
-      builtin_assert ("cpu=m68k");		\
-      builtin_assert ("machine=m68k");		\
-    }						\
+#define TARGET_CPU_CPP_BUILTINS()					\
+  do									\
+    {									\
+      builtin_define ("__m68k__");					\
+      builtin_define_std ("mc68000");					\
+      if (TARGET_68040_ONLY)						\
+	{								\
+	  if (TARGET_68060)						\
+	    builtin_define_std ("mc68060");				\
+	  else								\
+	    builtin_define_std ("mc68040");				\
+	}								\
+      else if (TARGET_68060) /* -m68020-60 */				\
+	{								\
+	  builtin_define_std ("mc68060");				\
+	  builtin_define_std ("mc68040");				\
+	  builtin_define_std ("mc68030");				\
+	  builtin_define_std ("mc68020");				\
+	}								\
+      else if (TARGET_68040) /* -m68020-40 */				\
+	{								\
+	  builtin_define_std ("mc68040");				\
+	  builtin_define_std ("mc68030");				\
+	  builtin_define_std ("mc68020");				\
+	}								\
+      else if (TARGET_68030)						\
+	builtin_define_std ("mc68030");					\
+      else if (TARGET_68020)						\
+	builtin_define_std ("mc68020");					\
+      if (TARGET_68881)							\
+	builtin_define ("__HAVE_68881__");				\
+      if (TARGET_CPU32)							\
+	{								\
+	  builtin_define_std ("mc68332");				\
+	  builtin_define_std ("mcpu32");				\
+	}								\
+      if (TARGET_COLDFIRE)						\
+	builtin_define ("__mcoldfire__");				\
+      if (TARGET_5200)							\
+	builtin_define ("__mcf5200__");					\
+      if (TARGET_528x)							\
+	{								\
+	  builtin_define ("__mcf528x__");				\
+	  builtin_define ("__mcf5200__");				\
+	}								\
+      if (TARGET_CFV3)							\
+	{								\
+	  builtin_define ("__mcf5300__");				\
+	  builtin_define ("__mcf5307__");				\
+	}								\
+      if (TARGET_CFV4)							\
+	{								\
+	  builtin_define ("__mcf5400__");				\
+	  builtin_define ("__mcf5407__");				\
+	}								\
+      if (TARGET_CFV4E)							\
+	{								\
+	  builtin_define ("__mcfv4e__");				\
+	}								\
+      if (TARGET_CF_HWDIV)						\
+	builtin_define ("__mcfhwdiv__");				\
+      builtin_assert ("cpu=m68k");					\
+      builtin_assert ("machine=m68k");					\
+    }									\
   while (0)
 
 /* Classify the groups of pseudo-ops used to assemble QI, HI and SI


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]