[AliasSetTracker] Cleanup more comments. [NFCI]
authorAlina Sbirlea <asbirlea@google.com>
Mon, 28 Jan 2019 19:38:03 +0000 (19:38 +0000)
committerAlina Sbirlea <asbirlea@google.com>
Mon, 28 Jan 2019 19:38:03 +0000 (19:38 +0000)
llvm-svn: 352416

llvm/lib/Analysis/AliasSetTracker.cpp

index de22304..6b4240c 100644 (file)
@@ -301,10 +301,12 @@ AliasSet *AliasSetTracker::mergeAliasSetsForPointer(const Value *Ptr,
     iterator Cur = I++;
     if (Cur->Forward || !Cur->aliasesPointer(Ptr, Size, AAInfo, AA)) continue;
 
-    if (!FoundSet) {      // If this is the first alias set ptr can go into.
-      FoundSet = &*Cur;   // Remember it.
-    } else {              // Otherwise, we must merge the sets.
-      FoundSet->mergeSetIn(*Cur, *this);     // Merge in contents.
+    if (!FoundSet) {
+      // If this is the first alias set ptr can go into, remember it.
+      FoundSet = &*Cur;
+    } else {
+      // Otherwise, we must merge the sets.
+      FoundSet->mergeSetIn(*Cur, *this);
     }
   }