From patchwork Tue Dec 20 21:24:34 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 18603 Received: (qmail 115030 invoked by alias); 20 Dec 2016 21:24:56 -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 115008 invoked by uid 89); 20 Dec 2016 21:24:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy=sk:0f9216c, 439, 7, sk:1b5cacd, 4397 X-HELO: relay1.mentorg.com Date: Tue, 20 Dec 2016 21:24:34 +0000 From: Joseph Myers To: Subject: Add preprocessor indentation for llogb macro in tgmath.h [commited] Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) I've committed this patch to fix preprocessor indentation for the llogb macro in tgmath.h. diff --git a/ChangeLog b/ChangeLog index 1b5cacd..31a807c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2016-12-20 Joseph Myers + + * math/tgmath.h [__GLIBC_USE (IEC_60559_BFP_EXT)] (llogb): Add + preprocessor indentation inside #if. + 2016-12-20 Gabriel F. T. Gomes * math/libm-test.inc (fmt_ftostr): New function. diff --git a/math/tgmath.h b/math/tgmath.h index 0f9216c..8a895a5 100644 --- a/math/tgmath.h +++ b/math/tgmath.h @@ -439,7 +439,7 @@ #if __GLIBC_USE (IEC_60559_BFP_EXT) /* Like ilogb, but returning long int. */ -#define llogb(Val) __TGMATH_UNARY_REAL_RET_ONLY (Val, long int, llogb) +# define llogb(Val) __TGMATH_UNARY_REAL_RET_ONLY (Val, long int, llogb) /* Return value with maximum magnitude. */ # define fmaxmag(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmaxmag)