dect
/
linux-2.6
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/arch/parisc/math-emu
John David Anglin cabd91c3bb parisc: avoid undefined shift in cnv_float.h
The attached change fixes a float conversion problem found running the
GCC testsuite with GCC configured with --with-arch=2.0.

The actual problem occurs for an exponent value of 63. This is the
maximum exponent value that can be passed. This causes a left shift by
32 in the else hunk of the macro. This causes undefined behavior and the
wrong value is returned for dresultB. The fix is the check "exponent <=
62". If the exponent is 63, dresultB is set to 0. The patch also
optimizes the operation a bit by copying "Sall(sgl_value) <<
SGL_EXP_LENGTH" to val, so that sgl_value is not modified.

Signed-off-by: John David Anglin <dave.anglin@bell.net>
Signed-off-by: Helge Deller <deller@gmx.de>
2013-01-07 23:06:22 +01:00
..
Makefile parisc: change to new flag variable 2010-10-21 21:07:47 -04:00
README
cnv_float.h parisc: avoid undefined shift in cnv_float.h 2013-01-07 23:06:22 +01:00
dbl_float.h
decode_exc.c treewide: fix potentially dangerous trailing ';' in #defined values/expressions 2011-07-21 14:10:00 +02:00
denormal.c
dfadd.c Fix common misspellings 2011-03-31 11:26:23 -03:00
dfcmp.c
dfdiv.c
dfmpy.c
dfrem.c
dfsqrt.c
dfsub.c Fix common misspellings 2011-03-31 11:26:23 -03:00
driver.c
fcnvff.c
fcnvfu.c
fcnvfut.c
fcnvfx.c
fcnvfxt.c
fcnvuf.c
fcnvxf.c
float.h
fmpyfadd.c Fix common misspellings 2011-03-31 11:26:23 -03:00
fpbits.h
fpu.h
fpudispatch.c bug.h: add include of it to various implicit C users 2012-02-29 17:15:08 -05:00
frnd.c
hppa.h
math-emu.h
sfadd.c Fix common misspellings 2011-03-31 11:26:23 -03:00
sfcmp.c
sfdiv.c
sfmpy.c
sfrem.c
sfsqrt.c
sfsub.c Fix common misspellings 2011-03-31 11:26:23 -03:00
sgl_float.h

README

All files except driver.c are snapshots from the HP-UX kernel.  They've
been modified as little as possible.  Even though they don't fit the
Linux coding style, please leave them in their funny format just in case
someone in the future, with access to HP-UX source code, is generous
enough to update our copies with later changes from HP-UX -- it'll
make their 'diff' job easier if our code is relatively unmodified.

Required Disclaimer: Hewlett-Packard makes no implied or expressed
warranties about this code nor any promises to maintain or test it
in any way.  This copy of this snapshot is no longer the property
of Hewlett-Packard.