Skip to content

Commit 370f741

Browse files
committed
pointer masking: Support _ssnpm to --isa
1 parent 6cc342b commit 370f741

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

disasm/isa_parser.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,8 @@ isa_parser_t::isa_parser_t(const char* str, const char *priv)
322322
extension_table[EXT_SMMPM] = true;
323323
} else if (ext_str == "smnpm") {
324324
extension_table[EXT_SMNPM] = true;
325+
} else if (ext_str == "ssnpm") {
326+
extension_table[EXT_SSNPM] = true;
325327
} else if (ext_str.substr(0, 3) == "zvl") {
326328
reg_t new_vlen;
327329
try {

riscv/isa_parser.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ typedef enum {
8484
EXT_SSDBLTRP,
8585
EXT_SMMPM,
8686
EXT_SMNPM,
87+
EXT_SSNPM,
8788
NUM_ISA_EXTENSIONS
8889
} isa_extension_t;
8990

0 commit comments

Comments
 (0)