From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 45004 invoked by alias); 8 Apr 2015 14:06:05 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 44991 invoked by uid 89); 8 Apr 2015 14:06:04 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 08 Apr 2015 14:06:03 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t38E00HJ012057 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Wed, 8 Apr 2015 10:00:00 -0400 Received: from tucnak.zalov.cz (ovpn-116-58.ams2.redhat.com [10.36.116.58]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t38DxwjQ018552 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 8 Apr 2015 10:00:00 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.14.9/8.14.9) with ESMTP id t38DxvrU028094; Wed, 8 Apr 2015 15:59:57 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.14.9/8.14.9/Submit) id t38DxtHs028093; Wed, 8 Apr 2015 15:59:55 +0200 Date: Wed, 08 Apr 2015 14:06:00 -0000 From: Jakub Jelinek To: Bernhard Reutner-Fischer Cc: tbsaunde+gcc@tbsaunde.org, GCC Patches , Richard Henderson , tgingold@free.fr, douglas.b.rupp@gmail.com Subject: Re: [PATCH] fix building for alpha-dec-vms Message-ID: <20150408135955.GQ19273@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <1427451870-16466-1-git-send-email-tbsaunde+gcc@tbsaunde.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg00315.txt.bz2 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 > > + > > + * 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 > > > > 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