mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Use a SmallPtrSet as suggested by Chris.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97056 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
173c5c40f6
commit
2f9b685198
@ -6344,8 +6344,8 @@ bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
|
||||
}
|
||||
|
||||
static void checkForCyclesHelper(const SDNode *N,
|
||||
std::set<const SDNode *> &visited,
|
||||
std::set<const SDNode *> &checked) {
|
||||
SmallPtrSet<const SDNode *, 32> &visited,
|
||||
SmallPtrSet<const SDNode *, 32> &checked) {
|
||||
if (checked.find(N) != checked.end())
|
||||
return;
|
||||
|
||||
@ -6371,8 +6371,8 @@ static void checkForCyclesHelper(const SDNode *N,
|
||||
void llvm::checkForCycles(const llvm::SDNode *N) {
|
||||
#ifdef XDEBUG
|
||||
assert(N && "Checking nonexistant SDNode");
|
||||
std::set<const SDNode *> visited;
|
||||
std::set<const SDNode *> checked;
|
||||
SmallPtrSet<const SDNode *, 32> visited;
|
||||
SmallPtrSet<const SDNode *, 32> checked;
|
||||
checkForCyclesHelper(N, visited, checked);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user