Rizin
unix-like reverse engineering framework and cli tools
MCInstrDesc.c
Go to the documentation of this file.
1 /* Capstone Disassembly Engine */
2 /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
3 
4 #include "MCInstrDesc.h"
5 
9 {
10  return m->Flags & (1 << MCOI_Predicate);
11 }
12 
16 {
17  return m->Flags & (1 << MCOI_OptionalDef);
18 }
bool MCOperandInfo_isOptionalDef(const MCOperandInfo *m)
Definition: MCInstrDesc.c:15
bool MCOperandInfo_isPredicate(const MCOperandInfo *m)
Definition: MCInstrDesc.c:8
@ MCOI_Predicate
Definition: MCInstrDesc.h:38
@ MCOI_OptionalDef
Definition: MCInstrDesc.h:39