forked from OSchip/llvm-project
parent
aea181de04
commit
8328341d9c
|
@ -6344,8 +6344,8 @@ bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static void checkForCyclesHelper(const SDNode *N,
|
static void checkForCyclesHelper(const SDNode *N,
|
||||||
std::set<const SDNode *> &visited,
|
SmallPtrSet<const SDNode *, 32> &visited,
|
||||||
std::set<const SDNode *> &checked) {
|
SmallPtrSet<const SDNode *, 32> &checked) {
|
||||||
if (checked.find(N) != checked.end())
|
if (checked.find(N) != checked.end())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -6371,8 +6371,8 @@ static void checkForCyclesHelper(const SDNode *N,
|
||||||
void llvm::checkForCycles(const llvm::SDNode *N) {
|
void llvm::checkForCycles(const llvm::SDNode *N) {
|
||||||
#ifdef XDEBUG
|
#ifdef XDEBUG
|
||||||
assert(N && "Checking nonexistant SDNode");
|
assert(N && "Checking nonexistant SDNode");
|
||||||
std::set<const SDNode *> visited;
|
SmallPtrSet<const SDNode *, 32> visited;
|
||||||
std::set<const SDNode *> checked;
|
SmallPtrSet<const SDNode *, 32> checked;
|
||||||
checkForCyclesHelper(N, visited, checked);
|
checkForCyclesHelper(N, visited, checked);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue