mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 18:24:00 +00:00
Poison APFloat::operator==. Replace existing uses with bitwiseIsEqual.
This means backing out the preceding change to Constants.cpp, alas. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41378 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -276,7 +276,7 @@ APFloat::operator=(const APFloat &rhs)
|
||||
}
|
||||
|
||||
bool
|
||||
APFloat::operator==(const APFloat &rhs) const {
|
||||
APFloat::bitwiseIsEqual(const APFloat &rhs) const {
|
||||
if (this == &rhs)
|
||||
return true;
|
||||
if (semantics != rhs.semantics ||
|
||||
|
Reference in New Issue
Block a user