From patchwork Sun Apr 5 11:35:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yann Sionneau X-Patchwork-Id: 1266530 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=uclibc-ng.org (client-ip=2a00:1828:2000:679::23; helo=helium.openadk.org; envelope-from=devel-bounces@uclibc-ng.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=sionneau.net Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; secure) header.d=sionneau.net header.i=@sionneau.net header.a=rsa-sha1 header.s=selectormx3 header.b=E1MX7rjH; dkim-atps=neutral Received: from helium.openadk.org (helium.openadk.org [IPv6:2a00:1828:2000:679::23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 48wBT426l7z9sRY for ; Sun, 5 Apr 2020 21:36:24 +1000 (AEST) Received: from helium.openadk.org (localhost [IPv6:::1]) by helium.openadk.org (Postfix) with ESMTP id EF8DD101B1; Sun, 5 Apr 2020 13:36:15 +0200 (CEST) X-Original-To: devel@uclibc-ng.org Delivered-To: devel@helium.openadk.org Received: from mx3.sionneau.net (mx3.sionneau.net [163.172.183.177]) by helium.openadk.org (Postfix) with ESMTPS id 640C3101A9 for ; Sun, 5 Apr 2020 13:36:08 +0200 (CEST) Received: from mx3.sionneau.net (localhost [127.0.0.1]) by mx3.sionneau.net. (OpenSMTPD) with ESMTP id 041ad251 for ; Sun, 5 Apr 2020 11:36:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=simple; d=sionneau.net; h=from:to:cc :subject:date:message-id:in-reply-to:references; s=selectormx3; bh=pC9pafpqVF3k6m721k0eL/gpjBk=; b=E1MX7rjHeZ0dDagQPEid8vcm02uW pr0dW1e5XLIvvFM3y9BjFaEKIi5YddMxD591QvMbDkFZx1bJfk1S6Hd/Ql/ZSa9E Mlmjh2wMTI+2gd6MsZ0UZMeM9rJS/bMXBg+M5hzAeZroMUTeP6QyFP5w4GxRKJaq XISkYHW7xBzrCoQ= DomainKey-Signature: a=rsa-sha1; c=simple; d=sionneau.net; h=from:to:cc :subject:date:message-id:in-reply-to:references; q=dns; s= selectormx3; b=UVlzKc/mthh9KEETl1LFf+YMPi238cloc6Zv83SNfBYWvDlwh kK9UMfeElUuoxWSb3qdSUBoLR7SpyptDq852vhN7YU9SadLDyDMmvI2ywEGT+Q/R 5cnK76MU1jhytW1WHSjNKj6tNovQfLxnudwXO6AEvENVXmH4s4JPGBJAF0= Received: by mx3.sionneau.net (OpenSMTPD) with ESMTPSA id 884aeecc (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO); Sun, 5 Apr 2020 11:36:06 +0000 (UTC) From: Yann Sionneau To: devel@uclibc-ng.org Date: Sun, 5 Apr 2020 13:35:39 +0200 Message-Id: <20200405113540.25084-4-yann@sionneau.net> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200405113540.25084-1-yann@sionneau.net> References: <20200405113540.25084-1-yann@sionneau.net> Subject: [uclibc-ng-devel] [PATCH 3/4] powerpc: update tls macros inline asm clobbers X-BeenThere: devel@uclibc-ng.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: uClibc-ng Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: devel-bounces@uclibc-ng.org Sender: "devel" This was causing a compile error for powerpc64 toolchain because r3 was both listed as clobbered and as output in inline asm. Signed-off-by: Yann Sionneau --- test/tls/tls-macros-powerpc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tls/tls-macros-powerpc.h b/test/tls/tls-macros-powerpc.h index ef293bb..8a368fa 100644 --- a/test/tls/tls-macros-powerpc.h +++ b/test/tls/tls-macros-powerpc.h @@ -1,5 +1,5 @@ #define __TLS_CALL_CLOBBERS \ - "0", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", \ + "0", "4", "5", "6", "7", "8", "9", "10", "11", "12", \ "lr", "ctr", "cr0", "cr1", "cr5", "cr6", "cr7" /* PowerPC32 Local Exec TLS access. */