Skip to content

Commit c577f7b

Browse files
author
Aidan
committed
formatting fix
1 parent 65ab88c commit c577f7b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

llvm/include/llvm/CodeGen/SDPatternMatch.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,8 @@ template <typename T0, typename T1> struct SDShuffle_match {
562562
bool match(const MatchContext &Ctx, SDValue N) {
563563
if (auto *I = dyn_cast<ShuffleVectorSDNode>(N)) {
564564
return Op1.match(Ctx, I->getOperand(0)) &&
565-
Op2.match(Ctx, I->getOperand(1)) && std::equal(Mask.begin(), Mask.end(), I->getMask().begin());
565+
Op2.match(Ctx, I->getOperand(1)) &&
566+
std::equal(Mask.begin(), Mask.end(), I->getMask().begin());
566567
}
567568
return false;
568569
}
@@ -823,8 +824,8 @@ inline BinaryOpc_match<LHS, RHS> m_Shuffle(const LHS &v1, const RHS &v2) {
823824
}
824825

825826
template <typename V1_t, typename V2_t>
826-
inline SDShuffle_match<V1_t, V2_t>
827-
m_Shuffle(const V1_t &v1, const V2_t &v2, const ArrayRef<int> mask) {
827+
inline SDShuffle_match<V1_t, V2_t> m_Shuffle(const V1_t &v1, const V2_t &v2,
828+
const ArrayRef<int> mask) {
828829
return SDShuffle_match<V1_t, V2_t>(v1, v2, mask);
829830
}
830831

0 commit comments

Comments
 (0)