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: 37429 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 */