[SLP][NFC]Remove extra semicolons after function definitions, NFC
authorAlexey Bataev <a.bataev@outlook.com>
Thu, 13 Apr 2023 18:30:25 +0000 (11:30 -0700)
committerAlexey Bataev <a.bataev@outlook.com>
Thu, 13 Apr 2023 18:33:25 +0000 (11:33 -0700)
llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp

index 6917c8c..11a580a 100644 (file)
@@ -9198,7 +9198,7 @@ public:
       R.eraseInstruction(EI);
     }
     return VecBase;
-  };
+  }
   /// Checks if the specified entry \p E needs to be delayed because of its
   /// dependency nodes.
   Value *needToDelay(const TreeEntry *E, ArrayRef<const TreeEntry *> Deps) {
@@ -9212,7 +9212,7 @@ public:
     Value *Vec = Builder.CreateAlignedLoad(
         VecTy, PoisonValue::get(VecTy->getPointerTo()), MaybeAlign());
     return Vec;
-  };
+  }
   /// Adds 2 input vectors and the mask for their shuffling.
   void add(Value *V1, Value *V2, ArrayRef<int> Mask) {
     assert(V1 && V2 && !Mask.empty() && "Expected non-empty input vectors.");