Skip to content

Commit da531c2

Browse files
committed
fixup! Reverse the suffixes after merge
1 parent 5fca298 commit da531c2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1689,13 +1689,13 @@ void RISCVDAGToDAGISel::Select(SDNode *Node) {
16891689
VMNANDOpcode = RISCV::PseudoVMNAND_MM_##suffix; \
16901690
VMSetOpcode = RISCV::PseudoVMSET_M_##suffix; \
16911691
break;
1692-
CASE_VMNAND_VMSET_OPCODES(LMUL_F8, B1)
1693-
CASE_VMNAND_VMSET_OPCODES(LMUL_F4, B2)
1694-
CASE_VMNAND_VMSET_OPCODES(LMUL_F2, B4)
1692+
CASE_VMNAND_VMSET_OPCODES(LMUL_F8, B64
1693+
CASE_VMNAND_VMSET_OPCODES(LMUL_F4, B32)
1694+
CASE_VMNAND_VMSET_OPCODES(LMUL_F2, B16)
16951695
CASE_VMNAND_VMSET_OPCODES(LMUL_1, B8)
1696-
CASE_VMNAND_VMSET_OPCODES(LMUL_2, B16)
1697-
CASE_VMNAND_VMSET_OPCODES(LMUL_4, B32)
1698-
CASE_VMNAND_VMSET_OPCODES(LMUL_8, B64)
1696+
CASE_VMNAND_VMSET_OPCODES(LMUL_2, B4)
1697+
CASE_VMNAND_VMSET_OPCODES(LMUL_4, B2)
1698+
CASE_VMNAND_VMSET_OPCODES(LMUL_8, B1)
16991699
#undef CASE_VMNAND_VMSET_OPCODES
17001700
}
17011701
SDValue SEW = CurDAG->getTargetConstant(

0 commit comments

Comments
 (0)