| 175 | } |
| 176 | |
| 177 | void MCOperand_CreateReg0(MCInst *mcInst, unsigned Reg) |
| 178 | { |
| 179 | MCOperand *op = &(mcInst->Operands[mcInst->size]); |
| 180 | mcInst->size++; |
| 181 | |
| 182 | op->MachineOperandType = kRegister; |
| 183 | op->Kind = kRegister; |
| 184 | op->RegVal = Reg; |
| 185 | } |
| 186 | |
| 187 | MCOperand *MCOperand_CreateImm1(MCInst *mcInst, int64_t Val) |
| 188 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…