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]

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


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:


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