diff options
author | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2012-10-29 18:17:42 +0000 |
---|---|---|
committer | Ulrich Weigand <ulrich.weigand@de.ibm.com> | 2012-10-29 18:17:42 +0000 |
commit | fce241d76fa39347f852fa74363b61c5e42cc602 (patch) | |
tree | 40cd4ae258f5b176059360decad47da608e5a802 /include | |
parent | 69c9c8c4cf57d49a0c64507082617f433372831d (diff) | |
download | external_llvm-fce241d76fa39347f852fa74363b61c5e42cc602.zip external_llvm-fce241d76fa39347f852fa74363b61c5e42cc602.tar.gz external_llvm-fce241d76fa39347f852fa74363b61c5e42cc602.tar.bz2 |
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
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ADT/APFloat.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/ADT/APFloat.h b/include/llvm/ADT/APFloat.h index 5a625a4..aff780f 100644 --- a/include/llvm/ADT/APFloat.h +++ b/include/llvm/ADT/APFloat.h @@ -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 */ |