forked from OSchip/llvm-project
Compensate for partCount change in Bogus definition
(could break hash table in ConstantFP) llvm-svn: 41874
This commit is contained in:
parent
66c22e8fd6
commit
521988b604
|
@ -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. */
|
||||
|
|
Loading…
Reference in New Issue