[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1535416123-23265-1-git-send-email-vincentc@andestech.com>
Date: Tue, 28 Aug 2018 08:28:43 +0800
From: Vincent Chen <vincentc@...estech.com>
To: <deanbo422@...il.com>, <linux-kernel@...r.kernel.org>
CC: <greentime@...estech.com>, Vincent Chen <vincentc@...estech.com>
Subject: [PATCH 2/2] math-emu/soft-fp.h: (_FP_ROUND_ZERO) cast 0 to void to fix warning
_FP_ROUND_ZERO is defined as 0 and used as a statemente in macro
_FP_ROUND. This will generate "error: statement with no effect
[-Werror=unused-value]" from gcc when compiling. Defining
_FP_ROUND_ZERO as (void)0 to fix it.
This modification references the content of glibc 'commit <In libc/:>
(8ed1e7d5894000c155acbd06f)'
Signed-off-by: Vincent Chen <vincentc@...estech.com>
---
include/math-emu/soft-fp.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/math-emu/soft-fp.h b/include/math-emu/soft-fp.h
index 3f284bc..5650c16 100644
--- a/include/math-emu/soft-fp.h
+++ b/include/math-emu/soft-fp.h
@@ -138,7 +138,7 @@
_FP_FRAC_ADDI_##wc(X, _FP_WORK_ROUND); \
} while (0)
-#define _FP_ROUND_ZERO(wc, X) 0
+#define _FP_ROUND_ZERO(wc, X) (void)0
#define _FP_ROUND_PINF(wc, X) \
do { \
--
1.7.1
Powered by blists - more mailing lists