Skip to content

Commit

Permalink
[SLP][NFC]Remove extra semicolons after function definitions, NFC
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-bataev committed Apr 13, 2023
1 parent bc7c9be commit a4eff2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9198,7 +9198,7 @@ class BoUpSLP::ShuffleInstructionBuilder final : public BaseShuffleAnalysis {
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) {
Expand All @@ -9212,7 +9212,7 @@ class BoUpSLP::ShuffleInstructionBuilder final : public BaseShuffleAnalysis {
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.");
Expand Down

0 comments on commit a4eff2b

Please sign in to comment.