APFloat cleanup: Remove now unused fields "sign2" and "exponent2".

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166952 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ulrich Weigand
2012-10-29 18:17:42 +00:00
parent 69c9c8c4cf
commit fce241d76f
2 changed files with 9 additions and 28 deletions

View File

@@ -455,13 +455,6 @@ namespace llvm {
/* The sign bit of this number. */
unsigned int sign: 1;
/* For PPCDoubleDouble, we have a second exponent and sign (the second
significand is appended to the first one, although it would be wrong to
regard these as a single number for arithmetic purposes). These fields
are not meaningful for any other type. */
exponent_t exponent2 : 11;
unsigned int sign2: 1;
};
} /* namespace llvm */