| 6 | #include "pcode.h" |
| 7 | |
| 8 | int BitCount(uint32_t x) |
| 9 | { |
| 10 | int result = 0; |
| 11 | while (x) |
| 12 | { |
| 13 | if (x & 1) |
| 14 | result += 1; |
| 15 | x >>= 1; |
| 16 | } |
| 17 | return result; |
| 18 | } |
| 19 | |
| 20 | bool BFXPreferred(uint32_t sf, uint32_t uns, uint32_t imms, uint32_t immr) |
| 21 | { |
no outgoing calls
no test coverage detected