Skip to content

Commit bfe9173

Browse files
authored
Merge pull request #1769 from riscv-software-src/b-ordering
Fix ordering of B single-letter extension
2 parents 183a2d0 + 9031c7b commit bfe9173

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

disasm/isa_parser.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ static void bad_priv_string(const char* priv)
3030
isa_parser_t::isa_parser_t(const char* str, const char *priv)
3131
{
3232
isa_string = strtolower(str);
33-
const char* all_subsets = "mafdqcpvhb";
33+
const char* all_subsets = "mafdqcbpvh";
3434

3535
if (isa_string.compare(0, 4, "rv32") == 0)
3636
max_xlen = 32;

0 commit comments

Comments
 (0)