public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] boolean logic error in fpu emulation.
@ 2003-08-11 15:59 davej
  0 siblings, 0 replies; only message in thread
From: davej @ 2003-08-11 15:59 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel

diff -urpN --exclude-from=/home/davej/.exclude bk-linus/arch/i386/math-emu/fpu_trig.c linux-2.5/arch/i386/math-emu/fpu_trig.c
--- bk-linus/arch/i386/math-emu/fpu_trig.c	2003-04-10 06:01:09.000000000 +0100
+++ linux-2.5/arch/i386/math-emu/fpu_trig.c	2003-07-13 06:03:46.000000000 +0100
@@ -1058,7 +1058,7 @@ static void do_fprem(FPU_REG *st0_ptr, u
 	return;
       goto fprem_valid;
     }
-  else if ( (st0_tag == TAG_Empty) | (st1_tag == TAG_Empty) )
+  else if ( (st0_tag == TAG_Empty) || (st1_tag == TAG_Empty) )
     {
       FPU_stack_underflow();
       return;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-08-11 16:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-11 15:59 [PATCH] boolean logic error in fpu emulation davej

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