mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 05:40:09 +00:00
Handle MIPS SIMM9 operand
This commit is contained in:
parent
584efadbc4
commit
6464d962f4
@ -2778,6 +2778,8 @@ std::string getPrimaryCSOperandType(Record const *OpRec) {
|
||||
return "CS_OP_INVALID";
|
||||
else if (OperandType == "OPERAND_IMPLICIT_IMM_0")
|
||||
return "CS_OP_IMM";
|
||||
else if (OperandType == "OPERAND_MEM_SIMM9")
|
||||
return "CS_OP_IMM";
|
||||
else
|
||||
PrintFatalNote("Unhandled OperandType: " + OperandType);
|
||||
return OperandType;
|
||||
|
Loading…
Reference in New Issue
Block a user