]> granicus.if.org Git - llvm/commitdiff
[MSSA] Fix PR28632 in the 3.9 branch.
authorGeorge Burgess IV <george.burgess.iv@gmail.com>
Thu, 21 Jul 2016 21:09:24 +0000 (21:09 +0000)
committerGeorge Burgess IV <george.burgess.iv@gmail.com>
Thu, 21 Jul 2016 21:09:24 +0000 (21:09 +0000)
The now-removed assertion was really more for initial debugging; it's
perfectly valid (albeit relatively rare) for `Q.Visited.size()` to be
greater than 1,000. A similar patch hasn't been applied to trunk
because the piece of code this assertion was a part of no longer exists
in trunk.

Fix okayed by Danny, merge to 3.9 okayed by Hans.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_39@276337 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/MemorySSA.cpp

index f93917f986139daf5ba90cb6b53b75a1f8951541..8ba3cae43b188d2ca01446c06e6523ea27d78644 100644 (file)
@@ -1225,7 +1225,6 @@ MemoryAccessPair MemorySSA::CachingWalker::UpwardsDFSWalk(
     MemoryAccess *CacheAccess = DFI.getPath(N - 1);
     doCacheInsert(CacheAccess, ModifyingAccess, Q, Loc);
   }
-  assert(Q.Visited.size() < 1000 && "Visited too much");
 
   return {ModifyingAccess, Loc};
 }