diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2007-10-12 15:35:10 +0000 |
---|---|---|
committer | Neil Booth <neil@daikokuya.co.uk> | 2007-10-12 15:35:10 +0000 |
commit | 5b8e0c5fd32fb3c4b6b13df99d4acab64d4e56c1 (patch) | |
tree | e97098c3e0ff7c0e7ec40180913fb0b157bc01df /lib/Support/APFloat.cpp | |
parent | 7a951ca5480698c97bcf1561d3d564e5bd9199f8 (diff) |
Remove a field that was never used.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42911 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/APFloat.cpp')
-rw-r--r-- | lib/Support/APFloat.cpp | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp index f2f6953751..d9f14455e4 100644 --- a/lib/Support/APFloat.cpp +++ b/lib/Support/APFloat.cpp @@ -40,21 +40,18 @@ namespace llvm { /* Number of bits in the significand. This includes the integer bit. */ unsigned int precision; - - /* If the target format has an implicit integer bit. */ - bool implicitIntegerBit; }; - const fltSemantics APFloat::IEEEsingle = { 127, -126, 24, true }; - 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::IEEEsingle = { 127, -126, 24 }; + const fltSemantics APFloat::IEEEdouble = { 1023, -1022, 53 }; + const fltSemantics APFloat::IEEEquad = { 16383, -16382, 113 }; + const fltSemantics APFloat::x87DoubleExtended = { 16383, -16382, 64 }; + const fltSemantics APFloat::Bogus = { 0, 0, 0 }; // The PowerPC format consists of two doubles. It does not map cleanly // onto the usual format above. For now only storage of constants of // this type is supported, no arithmetic. - const fltSemantics APFloat::PPCDoubleDouble = { 1023, -1022, 106, true }; + const fltSemantics APFloat::PPCDoubleDouble = { 1023, -1022, 106 }; } /* Put a bunch of private, handy routines in an anonymous namespace. */ |