public inbox for linux-m68k@lists.linux-m68k.org
 help / color / mirror / Atom feed
* [PATCH] arch: m68k: math-emu: unsigned issue, 'unsigned long' will never be less than zero.
@ 2013-05-30  6:25 Chen Gang
  0 siblings, 0 replies; 8+ messages in thread
From: Chen Gang @ 2013-05-30  6:25 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: linux-m68k, linux-kernel@vger.kernel.org, Linux-Arch


'oldmant.m32[1]' is 'unsigned long' which never '< 0', and the original
author wanted to check the highest bit whether set.

So need type cast form 'unsigned long' to 'long'.

The related warning: (with EXTRA_CFLAGS=-W ARCH=m68k for allmodconfig)
  arch/m68k/math-emu/fp_arith.c:522:4: warning: comparison of unsigned expression >= 0 is always true [-Wtype-limits]


Signed-off-by: Chen Gang <gang.chen@asianux.com>
---
 arch/m68k/math-emu/fp_arith.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/m68k/math-emu/fp_arith.c b/arch/m68k/math-emu/fp_arith.c
index 08f286d..ef013c5 100644
--- a/arch/m68k/math-emu/fp_arith.c
+++ b/arch/m68k/math-emu/fp_arith.c
@@ -519,7 +519,7 @@ static void fp_roundint(struct fp_ext *dest, int mode)
 				return;
 			break;
 		case 0x401e:
-			if (!(oldmant.m32[1] >= 0))
+			if (!((long)oldmant.m32[1] >= 0))
 				return;
 			if (oldmant.m32[0] & 1)
 				break;
-- 
1.7.7.6

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-06-03  9:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <51A6F0C6.9050806@asianux.com>
2013-05-30  7:09 ` [PATCH] arch: m68k: math-emu: unsigned issue, 'unsigned long' will never be less than zero Andreas Schwab
     [not found] ` <m2a9ndndu5.fsf@linux-m68k.org>
2013-05-30  8:08   ` Chen Gang
2013-05-30  8:21   ` [PATCH v2] " Chen Gang
2013-05-31  9:12     ` Geert Uytterhoeven
     [not found]     ` <CAMuHMdWOxh_YvQyid-PiN7FsM=OC=0YWOzJb86pKaQn3HrjaQw@mail.gmail.com>
2013-06-03  9:10       ` Chen Gang
     [not found]       ` <51AC5D7C.2000905@asianux.com>
2013-06-03  9:13         ` Geert Uytterhoeven
     [not found]         ` <CAMuHMdXrxAajOqfZd4iQRC2pKHE8KAZOVsZRfeyMWLHRt0NVUg@mail.gmail.com>
2013-06-03  9:22           ` Chen Gang
2013-05-30  6:25 [PATCH] " Chen Gang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox