mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-01 12:24:24 +00:00
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
This commit is contained in:
@ -47,7 +47,7 @@ namespace llvm {
|
|||||||
const fltSemantics APFloat::IEEEdouble = { 1023, -1022, 53, true };
|
const fltSemantics APFloat::IEEEdouble = { 1023, -1022, 53, true };
|
||||||
const fltSemantics APFloat::IEEEquad = { 16383, -16382, 113, true };
|
const fltSemantics APFloat::IEEEquad = { 16383, -16382, 113, true };
|
||||||
const fltSemantics APFloat::x87DoubleExtended = { 16383, -16382, 64, false };
|
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. */
|
/* Put a bunch of private, handy routines in an anonymous namespace. */
|
||||||
|
Reference in New Issue
Block a user