Expand a 31-bit signed value to a 32-bit signed value */
| 300 | |
| 301 | /* Expand a 31-bit signed value to a 32-bit signed value */ |
| 302 | static __inline int32_t |
| 303 | expand_prel31(uint32_t prel31) |
| 304 | { |
| 305 | |
| 306 | return ((int32_t)(prel31 & 0x7fffffffu) << 1) / 2; |
| 307 | } |
| 308 | |
| 309 | /* |
| 310 | * Perform a binary search of the index table to find the function |
no outgoing calls
no test coverage detected