mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Silencing some MSVC warnings "C4805: '^' : unsafe mix of type 'bool' and type 'unsigned int' in operation"; NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233067 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a1bcd75ddd
commit
9990bb34aa
@ -1430,7 +1430,7 @@ APFloat::addOrSubtractSignificand(const APFloat &rhs, bool subtract)
|
||||
|
||||
/* Determine if the operation on the absolute values is effectively
|
||||
an addition or subtraction. */
|
||||
subtract ^= sign ^ rhs.sign;
|
||||
subtract ^= static_cast<bool>(sign ^ rhs.sign);
|
||||
|
||||
/* Are we bigger exponent-wise than the RHS? */
|
||||
bits = exponent - rhs.exponent;
|
||||
|
Loading…
Reference in New Issue
Block a user