aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2007-08-24 05:08:11 +0000
committerDale Johannesen <dalej@apple.com>2007-08-24 05:08:11 +0000
commitd3b51fd17024569cc53ae02b9a4f80857930e08b (patch)
tree179a63b611038b92e1bdd58e18ac7730e210aeb5 /lib/VMCore
parentada530b4f552da1d122be0c6dbc936e689fc16fd (diff)
downloadexternal_llvm-d3b51fd17024569cc53ae02b9a4f80857930e08b.zip
external_llvm-d3b51fd17024569cc53ae02b9a4f80857930e08b.tar.gz
external_llvm-d3b51fd17024569cc53ae02b9a4f80857930e08b.tar.bz2
Revised per review feedback from previous patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41353 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Constants.cpp29
1 files changed, 9 insertions, 20 deletions
diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp
index fc3f5c9..36ba7c0 100644
--- a/lib/VMCore/Constants.cpp
+++ b/lib/VMCore/Constants.cpp
@@ -253,25 +253,14 @@ bool ConstantFP::isExactlyValue(double V) const {
namespace {
struct DenseMapAPFloatKeyInfo {
- struct KeyTy {
- APFloat val;
- KeyTy(const APFloat& V) : val(V){}
- KeyTy(const KeyTy& that) : val(that.val) {}
- bool operator==(const KeyTy& that) const {
- return this->val == that.val;
- }
- bool operator!=(const KeyTy& that) const {
- return !this->operator==(that);
- }
- };
- static inline KeyTy getEmptyKey() {
- return KeyTy(APFloat(APFloat::Bogus,1));
+ static inline APFloat getEmptyKey() {
+ return APFloat(APFloat::Bogus,1);
}
- static inline KeyTy getTombstoneKey() {
- return KeyTy(APFloat(APFloat::Bogus,2));
+ static inline APFloat getTombstoneKey() {
+ return APFloat(APFloat::Bogus,2);
}
- static unsigned getHashValue(const KeyTy &Key) {
- return Key.val.getHashValue();
+ static unsigned getHashValue(const APFloat &Key) {
+ return Key.getHashValue();
}
static bool isPod() { return false; }
};
@@ -279,21 +268,21 @@ namespace {
//---- ConstantFP::get() implementation...
//
-typedef DenseMap<DenseMapAPFloatKeyInfo::KeyTy, ConstantFP*,
+typedef DenseMap<APFloat, ConstantFP*,
DenseMapAPFloatKeyInfo> FPMapTy;
static ManagedStatic<FPMapTy> FPConstants;
ConstantFP *ConstantFP::get(const Type *Ty, double V) {
if (Ty == Type::FloatTy) {
- DenseMapAPFloatKeyInfo::KeyTy Key(APFloat((float)V));
+ APFloat Key(APFloat((float)V));
ConstantFP *&Slot = (*FPConstants)[Key];
if (Slot) return Slot;
return Slot = new ConstantFP(Ty, (float)V);
} else if (Ty == Type::DoubleTy) {
// Without the redundant cast, the following is taken to be
// a function declaration. What a language.
- DenseMapAPFloatKeyInfo::KeyTy Key(APFloat((double)V));
+ APFloat Key(APFloat((double)V));
ConstantFP *&Slot = (*FPConstants)[Key];
if (Slot) return Slot;
return Slot = new ConstantFP(Ty, V);