1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

revert david's patch which does not even build.

llvm-svn: 97057
This commit is contained in:
Chris Lattner 2010-02-24 21:25:08 +00:00
parent 68c9ece3da
commit fbafa903b5

View File

@ -6344,8 +6344,8 @@ bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
}
static void checkForCyclesHelper(const SDNode *N,
SmallPtrSet<const SDNode *, 32> &visited,
SmallPtrSet<const SDNode *, 32> &checked) {
std::set<const SDNode *> &visited,
std::set<const SDNode *> &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");
SmallPtrSet<const SDNode *, 32> visited;
SmallPtrSet<const SDNode *, 32> checked;
std::set<const SDNode *> visited;
std::set<const SDNode *> checked;
checkForCyclesHelper(N, visited, checked);
#endif
}