From nobody Thu May 2 05:50:51 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) client-ip=198.145.21.10; envelope-from=edk2-devel-bounces@lists.01.org; helo=ml01.01.org; Authentication-Results: mx.zoho.com; dkim=fail spf=none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) smtp.mailfrom=edk2-devel-bounces@lists.01.org; Return-Path: Received: from ml01.01.org (ml01.01.org [198.145.21.10]) by mx.zohomail.com with SMTPS id 1493243363128264.1029374623538; Wed, 26 Apr 2017 14:49:23 -0700 (PDT) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 3AE5121951C80; Wed, 26 Apr 2017 14:49:21 -0700 (PDT) Received: from mail-wm0-x236.google.com (mail-wm0-x236.google.com [IPv6:2a00:1450:400c:c09::236]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 2499D2195406C for ; Wed, 26 Apr 2017 14:49:20 -0700 (PDT) Received: by mail-wm0-x236.google.com with SMTP id r190so1747620wme.1 for ; Wed, 26 Apr 2017 14:49:20 -0700 (PDT) Received: from mohikan.hemma.eciton.net ([2a01:348:6:8735:e23f:49ff:fe6d:9d26]) by smtp.gmail.com with ESMTPSA id u4sm754981wmu.0.2017.04.26.14.49.16 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 26 Apr 2017 14:49:17 -0700 (PDT) X-Original-To: edk2-devel@lists.01.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=OVaNRFBaGzlOFcYqyFKhaxHjmyMc7bms8dIY0IILeUM=; b=evumnoRf+nsjOYVKXpla8IVmn7sGhOI6KMsyfnxqidQXcnrVUXk6wWi2qGcGwRufkK g3rD4+Lyoq4j0vGnBX6Af2ZAoRyl/lPalYPboQrwDFW5OuEntJH3qV8UCke7Oc0HgtKY KubgEJxYHNRXWHyqAsn3reg1Hb0VwVeLOr5F0= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=OVaNRFBaGzlOFcYqyFKhaxHjmyMc7bms8dIY0IILeUM=; b=jtkXZcOjdBlQZQCJZn8s8YG1YKSKltuJ1TupKgxj/ExZTHsn3ih/D30LLM9XafSjP9 K02BZjw9tRQ14kxgvAv4Nex47IrxlVLCYqPGiJ4jfl9OqEDWJuWOdoKoMPbrkM602HqI zcvKfoSoVjVricX8GDzw56GHteP5Cl/PuZHfNkdugn4I+PGxXP4gOlKmy5gN2PKeU7w0 mSc96tEmuN6ccJWvQbS6Y3cB/i6L6oHUgSC4Hud1f6B7F153EIHBwJs3vlFTRfTEcRyY Bh6X9RDeB3ykVzPA20rYnS7HpsA9o4iymmhOah0MpFfR2XhPp8yET/JLzxGcWYPD5tgd dEKQ== X-Gm-Message-State: AN3rC/6uJ7VlnSelHjW+5J5FjBeONL4aOQz6+m959xzRcvY1ZTjyLb2k PuaZbIfYURTct/fU X-Received: by 10.28.238.211 with SMTP id j80mr23676wmi.97.1493243357739; Wed, 26 Apr 2017 14:49:17 -0700 (PDT) From: Leif Lindholm To: edk2-devel@lists.01.org Date: Wed, 26 Apr 2017 22:49:16 +0100 Message-Id: <20170426214916.20784-1-leif.lindholm@linaro.org> X-Mailer: git-send-email 2.11.0 Subject: [edk2] [PATCH] StdLib: GCC 6 build fixes X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Jaben Carsey , Daryl McDaniel MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Errors-To: edk2-devel-bounces@lists.01.org Sender: "edk2-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) X-ZohoMail: RDKM_2 RSF_4 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Resolve mainly 'misleading indentation', but also one 'defined but not used' warning when building with GCC 6 (using GCC5 profile). Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Leif Lindholm Reviewed-by: Jaben Carsey --- Encountered when attmpting to build AppPkg/Applications/Lua. StdLib/LibC/Math/k_rem_pio2.c | 3 ++- StdLib/LibC/Math/w_exp.c | 2 ++ StdLib/LibC/Time/Time.c | 10 +++++----- StdLib/LibC/gdtoa/dtoa.c | 8 ++++---- 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/StdLib/LibC/Math/k_rem_pio2.c b/StdLib/LibC/Math/k_rem_pio2.c index af2857778d..bceeb73cc5 100644 --- a/StdLib/LibC/Math/k_rem_pio2.c +++ b/StdLib/LibC/Math/k_rem_pio2.c @@ -174,7 +174,8 @@ __kernel_rem_pio2(double *x, double *y, int e0, int nx,= int prec, const int32_t =20 /* compute q[0],q[1],...q[jk] */ for (i=3D0;i<=3Djk;i++) { - for(j=3D0,fw=3D0.0;j<=3Djx;j++) fw +=3D x[j]*f[jx+i-j]; q[i] =3D fw; + for(j=3D0,fw=3D0.0;j<=3Djx;j++) fw +=3D x[j]*f[jx+i-j]; + q[i] =3D fw; } =20 jz =3D jk; diff --git a/StdLib/LibC/Math/w_exp.c b/StdLib/LibC/Math/w_exp.c index 29a2bb2906..f2a0e39699 100644 --- a/StdLib/LibC/Math/w_exp.c +++ b/StdLib/LibC/Math/w_exp.c @@ -22,9 +22,11 @@ __RCSID("$NetBSD: w_exp.c,v 1.9 2002/05/26 22:02:00 wiz = Exp $"); #include "math.h" #include "math_private.h" =20 +#ifndef _IEEE_LIBM static const double o_threshold=3D 7.09782712893383973096e+02, /* 0x40862E42, 0xFEFA39EF */ u_threshold=3D -7.45133219101941108420e+02; /* 0xc0874910, 0xD52D3051 */ +#endif =20 double exp(double x) /* wrapper exp */ diff --git a/StdLib/LibC/Time/Time.c b/StdLib/LibC/Time/Time.c index 0296a5dc93..6d83986fcb 100644 --- a/StdLib/LibC/Time/Time.c +++ b/StdLib/LibC/Time/Time.c @@ -464,11 +464,11 @@ time1( for (i =3D 0; i < sp->typecnt; ++i) seen[i] =3D FALSE; nseen =3D 0; - for (i =3D sp->timecnt - 1; i >=3D 0; --i) - if (!seen[sp->types[i]]) { - seen[sp->types[i]] =3D TRUE; - types[nseen++] =3D sp->types[i]; - } + for (i =3D sp->timecnt - 1; i >=3D 0; --i) + if (!seen[sp->types[i]]) { + seen[sp->types[i]] =3D TRUE; + types[nseen++] =3D sp->types[i]; + } for (sameind =3D 0; sameind < nseen; ++sameind) { samei =3D types[sameind]; if (sp->ttis[samei].tt_isdst !=3D tmp->tm_isdst) diff --git a/StdLib/LibC/gdtoa/dtoa.c b/StdLib/LibC/gdtoa/dtoa.c index 42098426fd..cd3b1c85d4 100644 --- a/StdLib/LibC/gdtoa/dtoa.c +++ b/StdLib/LibC/gdtoa/dtoa.c @@ -526,15 +526,15 @@ dtoa Bfree(b); b =3D b1; } - if (( j =3D b5 - m5 )!=3D0) - b =3D pow5mult(b, j); + if (( j =3D b5 - m5 )!=3D0) + b =3D pow5mult(b, j); if (b =3D=3D NULL) return NULL; } else b =3D pow5mult(b, b5); - if (b =3D=3D NULL) - return NULL; + if (b =3D=3D NULL) + return NULL; } S =3D i2b(1); if (S =3D=3D NULL) --=20 2.11.0 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel