[llvm-commits] [llvm] r42911 - /llvm/trunk/lib/Support/APFloat.cpp
Neil Booth
neil at daikokuya.co.uk
Fri Oct 12 08:35:10 PDT 2007
Author: neil
Date: Fri Oct 12 10:35:10 2007
New Revision: 42911
URL: http://llvm.org/viewvc/llvm-project?rev=42911&view=rev
Log:
Remove a field that was never used.
Modified:
llvm/trunk/lib/Support/APFloat.cpp
Modified: llvm/trunk/lib/Support/APFloat.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/APFloat.cpp?rev=42911&r1=42910&r2=42911&view=diff
==============================================================================
--- llvm/trunk/lib/Support/APFloat.cpp (original)
+++ llvm/trunk/lib/Support/APFloat.cpp Fri Oct 12 10:35:10 2007
@@ -40,21 +40,18 @@
/* 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. */
More information about the llvm-commits
mailing list