diff options
author | Dale Johannesen <dalej@apple.com> | 2007-09-12 01:22:05 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-09-12 01:22:05 +0000 |
commit | f5febb9ef86c5f67872301153137d3cf7db1c62f (patch) | |
tree | 171f80d3e48bdaf7cb0785f33f4bb606ae888390 | |
parent | 909ec5692e77f3c580135d896188f0135abe0683 (diff) | |
download | external_llvm-f5febb9ef86c5f67872301153137d3cf7db1c62f.zip external_llvm-f5febb9ef86c5f67872301153137d3cf7db1c62f.tar.gz external_llvm-f5febb9ef86c5f67872301153137d3cf7db1c62f.tar.bz2 |
Compensate for partCount change in Bogus definition
(could break hash table in ConstantFP)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41874 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Support/APFloat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp index 96fdc42..397ff6d 100644 --- a/lib/Support/APFloat.cpp +++ b/lib/Support/APFloat.cpp @@ -47,7 +47,7 @@ namespace llvm { const fltSemantics APFloat::IEEEdouble = { 1023, -1022, 53, true }; const fltSemantics APFloat::IEEEquad = { 16383, -16382, 113, true }; const fltSemantics APFloat::x87DoubleExtended = { 16383, -16382, 64, false }; - const fltSemantics APFloat::Bogus = { 0, 0, 0, false }; + const fltSemantics APFloat::Bogus = { 0, 0, 0, true }; } /* Put a bunch of private, handy routines in an anonymous namespace. */ |