setcc *l
| 1096 | |
| 1097 | // setcc *l |
| 1098 | int x86SETcc(unsigned char *stream, x86Cond cond, x86Reg reg) |
| 1099 | { |
| 1100 | stream[0] = 0x0f; |
| 1101 | stream[1] = 0x90 + condCode[cond]; |
| 1102 | stream[2] = encodeRegister(reg, 0); |
| 1103 | return 3; |
| 1104 | } |
| 1105 | |
| 1106 | // call reg |
| 1107 | int x86CALL(unsigned char *stream, x86Reg address) |
no test coverage detected