From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-3.9 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_EF,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED,RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL,SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 878CA1F466 for ; Fri, 17 Jan 2020 23:56:46 +0000 (UTC) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:cc:subject:in-reply-to:references :date:message-id:mime-version:content-type; q=dns; s=default; b= caiEL89gkdzqx+c6K39yQ39VUf9DfqadW0IUBVG8GONPhLkMKTqCvgHSWYW2+uLC psI1+dcIJbpE0ehMYNBkf/bhq6WwGs5O6OXp5bgkFf6cS+DuhSiWjaGzxX1nEoj9 fAY19tIJG0a1rQW8yQDEuSD/yoJq5J+PV0KylQc+0bc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:cc:subject:in-reply-to:references :date:message-id:mime-version:content-type; s=default; bh=YssluY 9ze/AWImhdkWniMCr7msI=; b=iphoyhoaSjIAugHtfyQa1oe9/boI+WF32Daau5 redrbsc716Rm7E9AL8gT1y4uFQYUpEuP2+LjXTwvkVHmw5Cs9pyjDZhXw64KlM4Y Iw8bopeXIb625dFOHpfBXRq6bXuNFHBG+vK5p9vU7zvHyHXElzWDtqzXcAtS8FlH P3Pj0= Received: (qmail 72260 invoked by alias); 17 Jan 2020 23:56:44 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 72252 invoked by uid 89); 17 Jan 2020 23:56:44 -0000 Authentication-Results: sourceware.org; auth=none X-HELO: mx0a-001b2d01.pphosted.com From: Tulio Magno Quites Machado Filho To: Andreas Schwab Cc: Adhemerval Zanella , law@redhat.com, Florian Weimer , libc-alpha@sourceware.org Cc: Subject: Re: [PATCH] powerpc32: Fix syntax error in __GLRO macro In-Reply-To: <87blr14pgz.fsf_-_@igel.home> References: <1c5c49e4-55b1-a525-44a4-e2929ff1001a@linaro.org> <20200110222743.79551-1-tuliom@linux.ibm.com> <20200110222743.79551-2-tuliom@linux.ibm.com> <87blr14pgz.fsf_-_@igel.home> User-Agent: Notmuch/0.29.1 (http://notmuchmail.org) Emacs/26.3 (x86_64-redhat-linux-gnu) Date: Fri, 17 Jan 2020 20:56:35 -0300 Message-ID: <87y2u5ljrg.fsf@linux.ibm.com> MIME-Version: 1.0 Content-Type: text/plain Andreas Schwab writes: > diff --git a/sysdeps/powerpc/powerpc32/sysdep.h b/sysdeps/powerpc/powerpc32/sysdep.h > index 0dee5f2757..2ba009e919 100644 > --- a/sysdeps/powerpc/powerpc32/sysdep.h > +++ b/sysdeps/powerpc/powerpc32/sysdep.h > @@ -179,7 +179,7 @@ GOT_LABEL: ; \ > #else > /* Position-dependent code does not require access to the GOT. */ > # define __GLRO(rOUT, rGOT, member, offset) \ > - lis rOUT,(member+LOWORD)@ha \ > + lis rOUT,(member+LOWORD)@ha; \ > lwz rOUT,(member+LOWORD)@l(rOUT) > #endif /* PIC */ Thanks! -- Tulio Magno