summaryrefslogtreecommitdiff
path: root/include/llvm
diff options
context:
space:
mode:
authorUlrich Weigand <ulrich.weigand@de.ibm.com>2012-10-29 18:17:42 +0000
committerUlrich Weigand <ulrich.weigand@de.ibm.com>2012-10-29 18:17:42 +0000
commitfce241d76fa39347f852fa74363b61c5e42cc602 (patch)
tree40cd4ae258f5b176059360decad47da608e5a802 /include/llvm
parent69c9c8c4cf57d49a0c64507082617f433372831d (diff)
downloadllvm-fce241d76fa39347f852fa74363b61c5e42cc602.tar.gz
llvm-fce241d76fa39347f852fa74363b61c5e42cc602.tar.bz2
llvm-fce241d76fa39347f852fa74363b61c5e42cc602.tar.xz
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/llvm')
-rw-r--r--include/llvm/ADT/APFloat.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/ADT/APFloat.h b/include/llvm/ADT/APFloat.h
index 5a625a4c83..aff780f3fd 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 */