diff options
Diffstat (limited to 'source/s_roundPackMToExtF80M.c')
-rw-r--r-- | source/s_roundPackMToExtF80M.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/s_roundPackMToExtF80M.c b/source/s_roundPackMToExtF80M.c index b475bcb..f4edeee 100644 --- a/source/s_roundPackMToExtF80M.c +++ b/source/s_roundPackMToExtF80M.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. @@ -171,7 +171,7 @@ void | extSigPtr[indexWord( 3, 1 )]; if ( doIncrement ) { ++sig; - sig &= ~(! (sigExtra & 0x7FFFFFFF) & roundNearEven); + sig &= ~(uint64_t) (! (sigExtra & 0x7FFFFFFF) & roundNearEven); exp = ((sig & UINT64_C( 0x8000000000000000 )) != 0); } goto packReturn; @@ -211,7 +211,7 @@ void ++exp; sig = UINT64_C( 0x8000000000000000 ); } else { - sig &= ~(! (sigExtra & 0x7FFFFFFF) & roundNearEven); + sig &= ~(uint64_t) (! (sigExtra & 0x7FFFFFFF) & roundNearEven); } } /*------------------------------------------------------------------------ |