Remove a bogus assertion
authorChris Lattner <sabre@nondot.org>
Tue, 27 Jul 2004 07:22:21 +0000 (07:22 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 27 Jul 2004 07:22:21 +0000 (07:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15261 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/AliasSetTracker.cpp

index fedc27907443fcfa1c2c0f0c1600e5224bbde041..2db9134b8643d799e67a3d00a08e75117785ba8b 100644 (file)
@@ -41,9 +41,6 @@ void AliasSet::mergeSetIn(AliasSet &AS) {
     AS.CallSites.clear();
   }
   
-  // FIXME: If AS's refcount is zero, nuke it now...
-  assert(RefCount != 0);
-
   AS.Forward = this;  // Forward across AS now...
   addRef();           // AS is now pointing to us...