Skip to content

Commit 9031c7b

Browse files
authored
Fix ordering of B single-letter extension
The canonical order is IMAFDQLCBKJTPVH Signed-off-by: Jerry Zhao <jerryz123@berkeley.edu>
1 parent 6f28e4b commit 9031c7b

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)