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 | 521988b604c42f28eca7910e428feb8f221f9314 (patch) | |
tree | 39406e34eac8e77a1c16924b3f6d037013b75ac4 | |
parent | 66c22e8fd629d9163b298ee0c9f932f03dbfa50c (diff) | |
download | bcm5719-llvm-521988b604c42f28eca7910e428feb8f221f9314.tar.gz bcm5719-llvm-521988b604c42f28eca7910e428feb8f221f9314.zip |
Compensate for partCount change in Bogus definition
(could break hash table in ConstantFP)
llvm-svn: 41874
-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 96fdc42fb26..397ff6d164f 100644 --- a/llvm/lib/Support/APFloat.cpp +++ b/llvm/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. */ |