[Attributor][NFC] Clang tidy: no else after continue
authorJohannes Doerfert <johannes@jdoerfert.de>
Sat, 5 Sep 2020 18:26:20 +0000 (13:26 -0500)
committerJohannes Doerfert <johannes@jdoerfert.de>
Tue, 8 Sep 2020 04:38:08 +0000 (23:38 -0500)
llvm/lib/Transforms/IPO/AttributorAttributes.cpp

index b76e83d..0fa5ad9 100644 (file)
@@ -1141,11 +1141,13 @@ ChangeStatus AAReturnedValuesImpl::updateImpl(Attributor &A) {
         RVState RVS({NewRVsMap, Unused, RetValAAIt.second});
         VisitReturnedValue(*CB->getArgOperand(Arg->getArgNo()), RVS, CB);
         continue;
-      } else if (isa<CallBase>(RetVal)) {
+      }
+      if (isa<CallBase>(RetVal)) {
         // Call sites are resolved by the callee attribute over time, no need to
         // do anything for us.
         continue;
-      } else if (isa<Constant>(RetVal)) {
+      }
+      if (isa<Constant>(RetVal)) {
         // Constants are valid everywhere, we can simply take them.
         NewRVsMap[RetVal].insert(RIs.begin(), RIs.end());
         continue;