Skip to content

Commit 667b960

Browse files
committed
clang-format
1 parent 098adb0 commit 667b960

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3598,8 +3598,9 @@ Instruction *InstCombinerImpl::visitCallInst(CallInst &CI) {
35983598
break;
35993599
Value *EVL = II->getArgOperand(2);
36003600
// rev(unop rev(X)) --> unop X
3601-
if (match(Vec, m_OneUse(m_UnOp(m_Intrinsic<Intrinsic::experimental_vp_reverse>(
3602-
m_Value(X), m_AllOnes(), m_Specific(EVL)))))) {
3601+
if (match(Vec,
3602+
m_OneUse(m_UnOp(m_Intrinsic<Intrinsic::experimental_vp_reverse>(
3603+
m_Value(X), m_AllOnes(), m_Specific(EVL)))))) {
36033604
auto *OldUnOp = cast<UnaryOperator>(Vec);
36043605
auto *NewUnOp = UnaryOperator::CreateWithCopiedFlags(
36053606
OldUnOp->getOpcode(), X, OldUnOp, OldUnOp->getName(),

0 commit comments

Comments
 (0)