From bdea32d812744fc0f3af00f465b03e2506837b28 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Fri, 24 Aug 2007 22:09:56 +0000 Subject: Poison APFloat::operator==. Replace existing uses with bitwiseIsEqual. This means backing out the preceding change to Constants.cpp, alas. llvm-svn: 41378 --- llvm/lib/Support/APFloat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Support') diff --git a/llvm/lib/Support/APFloat.cpp b/llvm/lib/Support/APFloat.cpp index 8f1a566c303..d2e52adb170 100644 --- a/llvm/lib/Support/APFloat.cpp +++ b/llvm/lib/Support/APFloat.cpp @@ -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 || -- cgit v1.2.3