Explain change with a comment.
authorNick Lewycky <nicholas@mxc.ca>
Sun, 17 Sep 2006 17:51:00 +0000 (17:51 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Sun, 17 Sep 2006 17:51:00 +0000 (17:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30443 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/AliasSetTracker.cpp

index 39f01b613eced39093505da56e032a74d07feb9c..852def0b76736b0585ad1942df4ad021aa3178c1 100644 (file)
@@ -374,8 +374,8 @@ void AliasSetTracker::remove(AliasSet &AS) {
     ++NumRefs;
 
     // Finally, remove the entry.
-    Value *Remove = P->first;
-    PointerMap.erase(Remove);
+    Value *Remove = P->first;   // Take a copy because it is invalid to pass
+    PointerMap.erase(Remove);   // a reference to the data being erased.
   }
   
   // Stop using the alias set, removing it.