Results for 4.2.0 20060104 (experimental) testsuite on powerpc-apple-darwin8.3.0

Richard Henderson rth@redhat.com
Thu Jan 5 21:01:00 GMT 2006


On Wed, Jan 04, 2006 at 11:36:01PM -0500, Andrew Pinski wrote:
> Reduced testcase for that failure:
> @interface a {}
> #pragma mark --- Output ---
> @end

Fixed thus.


r~



	* c-parser.c (c_parser_objc_methodprotolist): Handle CPP_PRAGMA.

=== c-parser.c
==================================================================
--- c-parser.c	(revision 109395)
+++ c-parser.c	(local)
@@ -5866,6 +5866,9 @@
 	case CPP_MINUS:
 	  c_parser_objc_methodproto (parser);
 	  break;
+	case CPP_PRAGMA:
+	  c_parser_pragma (parser, pragma_external);
+	  break;
 	case CPP_EOF:
 	  return;
 	default:



More information about the Gcc-regression mailing list