mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-02 00:51:56 +00:00
Remove a DenseMapInfo specialization for std::pair -- we have one of
those baked into DenseMap now. llvm-svn: 186773
This commit is contained in:
parent
cf50f83dfd
commit
82ebea7f15
@ -56,26 +56,6 @@ STATISTIC(NumSingleStore, "Number of alloca's promoted with a single store");
|
||||
STATISTIC(NumDeadAlloca, "Number of dead alloca's removed");
|
||||
STATISTIC(NumPHIInsert, "Number of PHI nodes inserted");
|
||||
|
||||
namespace llvm {
|
||||
template<>
|
||||
struct DenseMapInfo<std::pair<BasicBlock*, unsigned> > {
|
||||
typedef std::pair<BasicBlock*, unsigned> EltTy;
|
||||
static inline EltTy getEmptyKey() {
|
||||
return EltTy(reinterpret_cast<BasicBlock*>(-1), ~0U);
|
||||
}
|
||||
static inline EltTy getTombstoneKey() {
|
||||
return EltTy(reinterpret_cast<BasicBlock*>(-2), 0U);
|
||||
}
|
||||
static unsigned getHashValue(const std::pair<BasicBlock*, unsigned> &Val) {
|
||||
using llvm::hash_value;
|
||||
return static_cast<unsigned>(hash_value(Val));
|
||||
}
|
||||
static bool isEqual(const EltTy &LHS, const EltTy &RHS) {
|
||||
return LHS == RHS;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
bool llvm::isAllocaPromotable(const AllocaInst *AI) {
|
||||
// FIXME: If the memory unit is of pointer or integer type, we can permit
|
||||
// assignments to subsections of the memory unit.
|
||||
|
Loading…
Reference in New Issue
Block a user