From patchwork Fri Jan 17 23:45:16 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 1225059 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-108783-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=linux-m68k.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha1 header.s=default header.b=FSuohZAj; dkim-atps=neutral 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 ozlabs.org (Postfix) with ESMTPS id 47zyP41Lpyz9sR0 for ; Sat, 18 Jan 2020 10:45:43 +1100 (AEDT) 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:subject:references:date:in-reply-to :message-id:mime-version:content-type; q=dns; s=default; b=Cv7/Q va6D5cWF9F6FdrTNKf6EMt+Uj9VdnvIECJ5KI1fbEF0oiRkUT58Va97qyNcsGqUA bf3Xqwd9ttWtAS4YdFFxLFiVDJT7/Bw4n43HvJ43L1REcz0gqCyUBwRhSJuTYfv6 nuRy6xcvPoiq5GyKIHelBKMTzg5bwHCglk6y8U= 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:subject:references:date:in-reply-to :message-id:mime-version:content-type; s=default; bh=GmGH/faybiQ zhZMGmvtqx5yEJ4A=; b=FSuohZAjOApAWDVEyzwnwk3M0dilwJgV/Y5rpd0Sv+3 qIa1zSx/Q6tQUDxzTUOF4mGpdR195i0ssfqnSufjDH9som9D3feZdRKtNITi/tzo VpbDKhL5Rpm3aHZla8U1CYcBo5BqSARfPbd6HxsdHnN++vn200IlCVWXYtM6KBnY = Received: (qmail 54974 invoked by alias); 17 Jan 2020 23:45:36 -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 Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 54684 invoked by uid 89); 17 Jan 2020 23:45:29 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-16.3 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.1 spammy=A9DA, 4d69, e780, DF73 X-HELO: mail-out.m-online.net From: Andreas Schwab To: Tulio Magno Quites Machado Filho Cc: Adhemerval Zanella , law@redhat.com, Florian Weimer , libc-alpha@sourceware.org Subject: [PATCH] powerpc32: Fix syntax error in __GLRO macro References: <1c5c49e4-55b1-a525-44a4-e2929ff1001a@linaro.org> <20200110222743.79551-1-tuliom@linux.ibm.com> <20200110222743.79551-2-tuliom@linux.ibm.com> X-Yow: Do you guys know we just passed thru a BLACK HOLE in space? Date: Sat, 18 Jan 2020 00:45:16 +0100 In-Reply-To: <20200110222743.79551-2-tuliom@linux.ibm.com> (Tulio Magno Quites Machado Filho's message of "Fri, 10 Jan 2020 19:27:43 -0300") Message-ID: <87blr14pgz.fsf_-_@igel.home> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 --- sysdeps/powerpc/powerpc32/sysdep.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */