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:
Dale Johannesen
2007-08-24 22:09:56 +00:00
parent 8bb369b807
commit 12595d7b16
4 changed files with 29 additions and 18 deletions

View File

@ -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 ||