Skip to content

Commit

Permalink
Handle VRegOperands
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 committed Jun 18, 2023
1 parent bb3e774 commit a706ec7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions arch/AArch64/AArch64Mapping.c
Original file line number Diff line number Diff line change
Expand Up @@ -724,10 +724,12 @@ static void add_cs_detail_general(MCInst *MI, aarch64_op_group op_group,
}
break;
}
case AArch64_OP_GROUP_VRegOperand:
printf("Operand group %d not implemented\n", op_group);
case AArch64_OP_GROUP_VRegOperand: {
unsigned Reg = MCInst_getOpVal(MI, OpNum);
AArch64_set_detail_op_reg(MI, OpNum, Reg);
break;
}
}
}

/// Fills cs_detail with the data of the operand.
Expand Down

0 comments on commit a706ec7

Please sign in to comment.