lkml.org 
[lkml]   [2003]   [Aug]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH] boolean logic error in fpu emulation.
Date
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;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2005-03-22 13:47    [W:0.033 / U:0.700 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site