summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/FoldingSet.h
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2007-09-14 22:26:36 +0000
committerDale Johannesen <dalej@apple.com>2007-09-14 22:26:36 +0000
commit9e3d3abd937c9bb79d56d25ec0e0724c7cbba67c (patch)
treec30fb34d6aa099b2c600d4a43088b7e99ef4e79b /include/llvm/ADT/FoldingSet.h
parent24f2ea3971065eb9e88d50ebeddad0463337cae3 (diff)
downloadllvm-9e3d3abd937c9bb79d56d25ec0e0724c7cbba67c.tar.gz
llvm-9e3d3abd937c9bb79d56d25ec0e0724c7cbba67c.tar.bz2
llvm-9e3d3abd937c9bb79d56d25ec0e0724c7cbba67c.tar.xz
Remove the assumption that FP's are either float or
double from some of the many places in the optimizers it appears, and do something reasonable with x86 long double. Make APInt::dump() public, remove newline, use it to dump ConstantSDNode's. Allow APFloats in FoldingSet. Expand X86 backend handling of long doubles (conversions to/from int, mostly). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41967 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/FoldingSet.h')
-rw-r--r--include/llvm/ADT/FoldingSet.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/ADT/FoldingSet.h b/include/llvm/ADT/FoldingSet.h
index 155243a627..7fca63867b 100644
--- a/include/llvm/ADT/FoldingSet.h
+++ b/include/llvm/ADT/FoldingSet.h
@@ -18,6 +18,7 @@
#include "llvm/Support/DataTypes.h"
#include "llvm/ADT/SmallVector.h"
+#include "llvm/ADT/APFloat.h"
#include <string>
namespace llvm {
@@ -153,6 +154,7 @@ public:
void AddInteger(uint64_t I);
void AddFloat(float F);
void AddDouble(double D);
+ void AddAPFloat(const APFloat& apf);
void AddString(const std::string &String);
/// ComputeHash - Compute a strong hash value for this NodeID, used to