1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Compensate for partCount change in Bogus definition

(could break hash table in ConstantFP)

llvm-svn: 41874
This commit is contained in:
Dale Johannesen 2007-09-12 01:22:05 +00:00
parent 89ced2f9b1
commit 4b03ae1ff5

View File

@ -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. */