[Obj-C++] Found a small paste-o in parser.c?

Ed Smith-Rowland 3dw4rd@verizon.net
Sun Nov 11 04:10:00 GMT 2012


I found this suspicious looking line in cp/parser.c () while looking at 
__thread and thread_local.

Look at the patterns of the if blocks above the line in question to verify.

Built and tested on x86_64-linux.

Ed

-------------- next part --------------
2012-11-11  Ed Smith-Rowland  <3dw4rd@verizon.net>

	* parser.c (cp_parser_objc_class_ivars):
	Index declspecs.locations by ds_typedef rather than ds_thread.

-------------- next part --------------
Index: parser.c
===================================================================
--- parser.c	(revision 193380)
+++ parser.c	(working copy)
@@ -24650,7 +24650,7 @@
       if (decl_spec_seq_has_spec_p (&declspecs, ds_typedef))
 	{
 	  cp_parser_error (parser, "invalid type for instance variable");
-	  declspecs.locations[ds_thread] = 0;
+	  declspecs.locations[ds_typedef] = 0;
 	}
 
       prefix_attributes = declspecs.attributes;


More information about the Gcc-patches mailing list