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: [PATCH] Fix some Objective-C failures on *-*-darwin* (next runtime)


On Thursday, Jul 17, 2003, at 10:13 US/Eastern, Nicola Pero wrote:

Thanks. That's useful.


I think the proper fix for the testcase then is to add forward::, that is,
adding to the class definitions something like the following


#ifdef __NEXT_RUNTIME__
- (retval_t) forward: (SEL)aSel : (arglist_t)argFrame
{
  return nil;
}
#endif

That would be Ok for me.

I had to add and the include for objc/Object.h: #ifdef __NEXT_RUNTIME__ - forward: (SEL)sel : (marg_list)args; { return nil; } #endif

I am going to wait for objc-improvements-branch to
happen to do anything further.

Thanks,
Andrew Pinski


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