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 building for alpha-dec-vms


On Wed, Apr 08, 2015 at 03:57:09PM +0200, Bernhard Reutner-Fischer wrote:
> [CC ing maintainers]
> 
> Ping.

This is ok.

> > --- a/gcc/ChangeLog
> > +++ b/gcc/ChangeLog
> > @@ -1,3 +1,9 @@
> > +2015-03-27  Trevor Saunders  <tbsaunde@tbsaunde.org>
> > +
> > +       * config/alpha/alpha.c (alpha_use_linkage): Change type of slot to
> > +       alpha_links **.
> > +       (alpha_write_one_linkage): Correct typo.
> > +
> >  2015-03-27  Marek Polacek  <polacek@redhat.com>
> >
> >         PR sanitizer/65583
> > diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c
> > index 554ff09..67c15dc 100644
> > --- a/gcc/config/alpha/alpha.c
> > +++ b/gcc/config/alpha/alpha.c
> > @@ -9665,7 +9665,7 @@ alpha_use_linkage (rtx func, bool lflag, bool rflag)
> >    if (cfun->machine->links)
> >      {
> >        /* Is this name already defined?  */
> > -      alpha_links *slot = cfun->machine->links->get (name);
> > +      alpha_links **slot = cfun->machine->links->get (name);
> >        if (slot)
> >         al = *slot;
> >      }
> > @@ -9711,7 +9711,7 @@ alpha_use_linkage (rtx func, bool lflag, bool rflag)
> >  }
> >
> >  static int
> > -alpha_write_one_linkage (const char *name, alpha_links *link, FILE *steam)
> > +alpha_write_one_linkage (const char *name, alpha_links *link, FILE *stream)
> >  {
> >    ASM_OUTPUT_INTERNAL_LABEL (stream, XSTR (link->linkage, 0));
> >    if (link->rkind == KIND_CODEADDR)
> > --
> > 2.1.4
> >

	Jakub


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