This assertion is bogus now that calls do not necessarily read/write memory
authorChris Lattner <sabre@nondot.org>
Mon, 15 Mar 2004 06:24:15 +0000 (06:24 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 15 Mar 2004 06:24:15 +0000 (06:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12421 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/AliasSetTracker.cpp

index d266c2a5a07992ecf48363ebb94551edcd883273..450ba935bc0c8fe617bea9508df607fbc13586e6 100644 (file)
@@ -117,8 +117,6 @@ void AliasSet::addCallSite(CallSite CS, AliasAnalysis &AA) {
 bool AliasSet::aliasesPointer(const Value *Ptr, unsigned Size,
                               AliasAnalysis &AA) const {
   if (AliasTy == MustAlias) {
-    assert(CallSites.empty() && "Illegal must alias set!");
-
     // If this is a set of MustAliases, only check to see if the pointer aliases
     // SOME value in the set...
     HashNodePair *SomePtr = getSomePointer();