Browse Source
Merge pull request #1769 from riscv-software-src/b-ordering
Fix ordering of B single-letter extension
pull/1777/head
Andrew Waterman
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
disasm/isa_parser.cc
|
|
|
@ -30,7 +30,7 @@ static void bad_priv_string(const char* priv) |
|
|
|
isa_parser_t::isa_parser_t(const char* str, const char *priv) |
|
|
|
{ |
|
|
|
isa_string = strtolower(str); |
|
|
|
const char* all_subsets = "mafdqcpvhb"; |
|
|
|
const char* all_subsets = "mafdqcbpvh"; |
|
|
|
|
|
|
|
if (isa_string.compare(0, 4, "rv32") == 0) |
|
|
|
max_xlen = 32; |
|
|
|
|