From 257500db0437b6089f46ccf58bcdf04ad8dae9d9 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Wed, 12 Sep 2007 01:22:05 +0000 Subject: [PATCH] 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 --- lib/Support/APFloat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp index 96fdc42fb26..397ff6d164f 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. */