Reformat.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@223580 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2014-12-06 05:57:06 +00:00
parent 1ba81462d0
commit c589098319
2 changed files with 21 additions and 29 deletions

View File

@ -554,7 +554,6 @@ Constant *ConstantInt::getFalse(Type *Ty) {
ConstantInt::getFalse(Ty->getContext()));
}
// Get a ConstantInt from an APInt. Note that the value stored in the DenseMap
// as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
// operator== and operator!= to ensure that the DenseMap doesn't attempt to
@ -566,7 +565,8 @@ ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) {
// get an existing value or the insertion position
LLVMContextImpl *pImpl = Context.pImpl;
ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
if (!Slot) Slot = new ConstantInt(ITy, V);
if (!Slot)
Slot = new ConstantInt(ITy, V);
return Slot;
}

View File

@ -53,9 +53,7 @@ struct DenseMapAPIntKeyInfo {
bool operator==(const KeyTy &that) const {
return type == that.type && this->val == that.val;
}
bool operator!=(const KeyTy& that) const {
return !this->operator==(that);
}
bool operator!=(const KeyTy &that) const { return !this->operator==(that); }
friend hash_code hash_value(const KeyTy &Key) {
return hash_combine(Key.type, Key.val);
}
@ -65,9 +63,7 @@ struct DenseMapAPIntKeyInfo {
static unsigned getHashValue(const KeyTy &Key) {
return static_cast<unsigned>(hash_value(Key));
}
static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
return LHS == RHS;
}
static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) { return LHS == RHS; }
};
struct DenseMapAPFloatKeyInfo {
@ -77,9 +73,7 @@ struct DenseMapAPFloatKeyInfo {
bool operator==(const KeyTy &that) const {
return this->val.bitwiseIsEqual(that.val);
}
bool operator!=(const KeyTy& that) const {
return !this->operator==(that);
}
bool operator!=(const KeyTy &that) const { return !this->operator==(that); }
friend hash_code hash_value(const KeyTy &Key) {
return hash_combine(Key.val);
}
@ -93,9 +87,7 @@ struct DenseMapAPFloatKeyInfo {
static unsigned getHashValue(const KeyTy &Key) {
return static_cast<unsigned>(hash_value(Key));
}
static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) {
return LHS == RHS;
}
static bool isEqual(const KeyTy &LHS, const KeyTy &RHS) { return LHS == RHS; }
};
struct AnonStructTypeKeyInfo {