diff options
| author | Dale Johannesen <dalej@apple.com> | 2007-08-24 22:09:56 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2007-08-24 22:09:56 +0000 |
| commit | bdea32d812744fc0f3af00f465b03e2506837b28 (patch) | |
| tree | e4f03cf1c9efe0e747a34426929c27c323b9b43c /llvm/lib/Support | |
| parent | 74ed76bb0eb11aa10cf78602906d35720d2c4333 (diff) | |
| download | bcm5719-llvm-bdea32d812744fc0f3af00f465b03e2506837b28.tar.gz bcm5719-llvm-bdea32d812744fc0f3af00f465b03e2506837b28.zip | |
Poison APFloat::operator==. Replace existing uses with bitwiseIsEqual.
This means backing out the preceding change to Constants.cpp, alas.
llvm-svn: 41378
Diffstat (limited to 'llvm/lib/Support')
| -rw-r--r-- | llvm/lib/Support/APFloat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 || |

