(n: Union[ILRegister, int])
| 6193 | |
| 6194 | |
| 6195 | def LLIL_REG_IS_TEMP(n: Union[ILRegister, int]) -> bool: |
| 6196 | return (int(n) & 0x80000000) != 0 |
| 6197 | |
| 6198 | |
| 6199 | def LLIL_GET_TEMP_REG_INDEX(n: Union[ILRegister, int]) -> int: |
no outgoing calls
no test coverage detected