aboutsummaryrefslogtreecommitdiff
path: root/source/s_mulAddF128M.c
diff options
context:
space:
mode:
authorJohn Hauser <jhauser@eecs.berkeley.edu>2015-02-19 14:09:32 -0800
committerJohn Hauser <jhauser@eecs.berkeley.edu>2015-02-19 14:09:32 -0800
commitc07232ca9ed081c229d03c3c38e10b776d0becf8 (patch)
treea2482d5229ee7e3873e3e839068d37d3c586b522 /source/s_mulAddF128M.c
parent6e7b8b549aa62cc10f85ec08774c13dab74cba7c (diff)
downloadberkeley-softfloat-3-c07232ca9ed081c229d03c3c38e10b776d0becf8.zip
berkeley-softfloat-3-c07232ca9ed081c229d03c3c38e10b776d0becf8.tar.gz
berkeley-softfloat-3-c07232ca9ed081c229d03c3c38e10b776d0becf8.tar.bz2
Fixed some bugs affecting a few processors. Reboot the official release
date (for the last time) to be 2015 Feb 16.
Diffstat (limited to 'source/s_mulAddF128M.c')
-rw-r--r--source/s_mulAddF128M.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/s_mulAddF128M.c b/source/s_mulAddF128M.c
index 4fab817..3f74d43 100644
--- a/source/s_mulAddF128M.c
+++ b/source/s_mulAddF128M.c
@@ -4,10 +4,10 @@
This C source file is part of the SoftFloat IEEE Floating-Point Arithmetic
Package, Release 3, by John R. Hauser.
-Copyright 2011, 2012, 2013, 2014 The Regents of the University of California
-(Regents). All Rights Reserved. Redistribution and use in source and binary
-forms, with or without modification, are permitted provided that the following
-conditions are met:
+Copyright 2011, 2012, 2013, 2014, 2015 The Regents of the University of
+California (Regents). All Rights Reserved. Redistribution and use in source
+and binary forms, with or without modification, are permitted provided that
+the following conditions are met:
Redistributions of source code must retain the above copyright notice,
this list of conditions, and the following two paragraphs of disclaimer.
@@ -241,7 +241,7 @@ void
*----------------------------------------------------------------*/
shiftCount = expDiff & 31;
if ( shiftCount ) {
- softfloat_shortShiftRight160M( sigX, expDiff, sigX );
+ softfloat_shortShiftRight160M( sigX, shiftCount, sigX );
}
expDiff >>= 5;
extSigPtr =