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]

Patch installed for indented #defines in i370/*.h


This one was kinda goofy.  I was getting warnings about the '#' in
#define being indented.  Turns out there was a spurious trailing
backslash in the comment preceeding each #define stmt which sucked the
'#' onto the previous line.

Tested via cross-compiling cc1 to i370-unknown-linux-gnu
i370-unknown-mvs and i370-unknown-opened

Installed as obvious.


2002-08-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>

	* i370.h (TARGET_CPU_CPP_BUILTINS): Remove spurious trailing
	backslash in comment preceeding macro definition.
	* i370/linux.h (TARGET_OS_CPP_BUILTINS): Likewise.
	* i370/mvs.h (TARGET_OS_CPP_BUILTINS): Likewise.
	* i370/oe.h (TARGET_OS_CPP_BUILTINS): Likewise.

diff -rup orig/egcc-CVS20020811/gcc/config/i370/i370.h egcc-CVS20020811/gcc/config/i370/i370.h
--- orig/egcc-CVS20020811/gcc/config/i370/i370.h	Tue Jul 30 22:10:51 2002
+++ egcc-CVS20020811/gcc/config/i370/i370.h	Sun Aug 11 22:29:40 2002
@@ -25,7 +25,7 @@ Boston, MA 02111-1307, USA.  */
 #ifndef GCC_I370_H
 #define GCC_I370_H
 
-/* Target CPU builtins.  */			\
+/* Target CPU builtins.  */
 #define TARGET_CPU_CPP_BUILTINS()		\
   do						\
     {						\
diff -rup orig/egcc-CVS20020811/gcc/config/i370/linux.h egcc-CVS20020811/gcc/config/i370/linux.h
--- orig/egcc-CVS20020811/gcc/config/i370/linux.h	Sun Jun  2 21:05:21 2002
+++ egcc-CVS20020811/gcc/config/i370/linux.h	Sun Aug 11 22:30:10 2002
@@ -32,7 +32,7 @@ Boston, MA 02111-1307, USA.  */
 /* TODO: convert include to ${tm_file} list in config.gcc.  */
 #include "i370/i370.h"
 
-/* Target OS preprocessor built-ins.  */	\
+/* Target OS preprocessor built-ins.  */
 #define TARGET_OS_CPP_BUILTINS()		\
     do {					\
 	builtin_define_std ("unix");		\
diff -rup orig/egcc-CVS20020811/gcc/config/i370/mvs.h egcc-CVS20020811/gcc/config/i370/mvs.h
--- orig/egcc-CVS20020811/gcc/config/i370/mvs.h	Sun Jun  2 21:05:21 2002
+++ egcc-CVS20020811/gcc/config/i370/mvs.h	Sun Aug 11 22:49:47 2002
@@ -32,7 +32,7 @@ Boston, MA 02111-1307, USA.  */
 
 #define CPP_SPEC "-trigraphs"
 
-/* Target OS preprocessor built-ins.  */	\
+/* Target OS preprocessor built-ins.  */
 #define TARGET_OS_CPP_BUILTINS()		\
     do {					\
 	builtin_define_std ("MVS");		\
diff -rup orig/egcc-CVS20020811/gcc/config/i370/oe.h egcc-CVS20020811/gcc/config/i370/oe.h
--- orig/egcc-CVS20020811/gcc/config/i370/oe.h	Sun Jun  2 21:05:21 2002
+++ egcc-CVS20020811/gcc/config/i370/oe.h	Sun Aug 11 22:47:45 2002
@@ -39,7 +39,7 @@ Boston, MA 02111-1307, USA.  */
 #define LIBGCC_SPEC ""
 #define STARTFILE_SPEC "/usr/local/lib/gccmain.o"
 
-/* Target OS preprocessor built-ins.  */	\
+/* Target OS preprocessor built-ins.  */
 #define TARGET_OS_CPP_BUILTINS()		\
     do {					\
 	builtin_define_std ("unix");		\


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