Skip to content

Commit b9ca01b

Browse files
committed
[RISCV] Move the decoder table for XCV, Xqci and XRivos from standard section to vendor section. NFC
1 parent 3769ce0 commit b9ca01b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -674,6 +674,9 @@ static constexpr FeatureBitset XAndesGroup = {
674674

675675
static constexpr DecoderListEntry DecoderList32[]{
676676
// Vendor Extensions
677+
{DecoderTableXCV32, XCVFeatureGroup, "CORE-V extensions"},
678+
{DecoderTableXRivos32, XRivosFeatureGroup, "Rivos"},
679+
{DecoderTableXqci32, XqciFeatureGroup, "Qualcomm uC Extensions"},
677680
{DecoderTableXVentana32,
678681
{RISCV::FeatureVendorXVentanaCondOps},
679682
"XVentanaCondOps"},
@@ -690,9 +693,6 @@ static constexpr DecoderListEntry DecoderList32[]{
690693
"MIPS mips.pref"},
691694
{DecoderTableXAndes32, XAndesGroup, "Andes extensions"},
692695
// Standard Extensions
693-
{DecoderTableXCV32, XCVFeatureGroup, "CORE-V extensions"},
694-
{DecoderTableXqci32, XqciFeatureGroup, "Qualcomm uC Extensions"},
695-
{DecoderTableXRivos32, XRivosFeatureGroup, "Rivos"},
696696
{DecoderTable32, {}, "standard 32-bit instructions"},
697697
{DecoderTableRV32Only32, {}, "RV32-only standard 32-bit instructions"},
698698
{DecoderTableZfinx32, {}, "Zfinx (Float in Integer)"},

0 commit comments

Comments
 (0)