This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


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

Re: PATCH: Add __frame_state_for for gcc 3.0.1


On Wed, Jul 04, 2001 at 09:17:56PM -0700, H . J . Lu wrote:
> 
> > 2) you need to add all the new stuff Richard added, like L, R, P in
> >    augmentation (because at least glibc's qsort etc. will use relative
> >    addressing)
> 
> I will see what I can done.
> 

I can change

  if (strcmp (c->augmentation, "") != 0
      && strcmp (c->augmentation, "eh") != 0
      && c->augmentation[0] != 'z') 
    return 0;

to

  if (strcmp (c->augmentation, "") != 0
      && strcmp (c->augmentation, "eh") != 0
      && c->augmentation[0] != 'z') 
    abort ();

Or someone else has to add the real support to it.


H.J.


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