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 obvious c-decl.c fix


I checked in the attaches patch as obvious.
This actually caused a problem (on MacOS - i.e.
using Gcc) when I did a plain non-bootstrap make.
I didn't try to figure out exactly what was going
wrong, but removing the bogus line-continuation
fixed it.

2003-08-09 Per Bothner <per@bothner.com>

* c-decl.c (SCOPE_LIST_APPEND): Remove bogus line continuation.

--
	--Per Bothner
per@bothner.com   http://per.bothner.com/


Index: c-decl.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/c-decl.c,v
retrieving revision 1.429
diff -u -r1.429 c-decl.c
--- c-decl.c	7 Aug 2003 03:12:09 -0000	1.429
+++ c-decl.c	9 Aug 2003 21:55:33 -0000
@@ -266,7 +266,7 @@
 
 static GTY(()) struct c_scope *global_scope;
 
-/* Append VAR to LIST in scope SCOPE.  */		\
+/* Append VAR to LIST in scope SCOPE.  */
 #define SCOPE_LIST_APPEND(scope, list, decl) do {	\
   struct c_scope *s_ = (scope);				\
   tree d_ = (decl);					\

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