diff options
author | Chris Lattner <sabre@nondot.org> | 2004-07-27 07:22:21 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-07-27 07:22:21 +0000 |
commit | 63e9930498a0eefaa6cfcca72213ec527cc72198 (patch) | |
tree | 358daf8dec51fbe7d22cb4a0d2db2592523cad0a /lib/Analysis/AliasSetTracker.cpp | |
parent | fe98f27e807b478d85240240cb19b6673aaaafb8 (diff) |
Remove a bogus assertion
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/AliasSetTracker.cpp')
-rw-r--r-- | lib/Analysis/AliasSetTracker.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Analysis/AliasSetTracker.cpp b/lib/Analysis/AliasSetTracker.cpp index fedc279074..2db9134b86 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... |