Cmp compares a register with the specified data.
| 439 | |
| 440 | // Cmp compares a register with the specified data. |
| 441 | type Cmp struct { |
| 442 | Op CmpOp |
| 443 | Register uint32 |
| 444 | Data []byte |
| 445 | } |
| 446 | |
| 447 | func (e *Cmp) marshal(fam byte) ([]byte, error) { |
| 448 | exprData, err := e.marshalData(fam) |
nothing calls this directly
no outgoing calls
no test coverage detected