summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.co.uk>2007-10-12 15:35:10 +0000
committerNeil Booth <neil@daikokuya.co.uk>2007-10-12 15:35:10 +0000
commite9dbe094aa86092ef0ee02c348668f63955d945d (patch)
tree27fd1121bdb82da565b8313ae3526c16b3f2d322 /llvm/lib
parent146fdb3eeb1b34bf3d0e4bcba68cbba89382f662 (diff)
downloadbcm5719-llvm-e9dbe094aa86092ef0ee02c348668f63955d945d.tar.gz
bcm5719-llvm-e9dbe094aa86092ef0ee02c348668f63955d945d.zip
Remove a field that was never used.
llvm-svn: 42911
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Support/APFloat.cpp15
1 files changed, 6 insertions, 9 deletions
diff --git a/llvm/lib/Support/APFloat.cpp b/llvm/lib/Support/APFloat.cpp
index f2f69537511..d9f14455e45 100644
--- a/llvm/lib/Support/APFloat.cpp
+++ b/llvm/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. */
OpenPOWER on IntegriCloud