From: Chris Lattner Date: Tue, 27 Jul 2004 07:22:21 +0000 (+0000) Subject: Remove a bogus assertion X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=63e9930498a0eefaa6cfcca72213ec527cc72198;p=oota-llvm.git Remove a bogus assertion git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15261 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/AliasSetTracker.cpp b/lib/Analysis/AliasSetTracker.cpp index fedc2790744..2db9134b864 100644 --- a/lib/Analysis/AliasSetTracker.cpp +++ b/lib/Analysis/AliasSetTracker.cpp @@ -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...