| 411 | } |
| 412 | |
| 413 | static inline unsigned getT2SOImmTwoPartSecond(unsigned Imm) |
| 414 | { |
| 415 | // Mask out the first hunk |
| 416 | Imm ^= getT2SOImmTwoPartFirst(Imm); |
| 417 | // Return what's left |
| 418 | //assert (getT2SOImmVal(Imm) != -1 && |
| 419 | // "Unable to encode second part of T2 two part SO immediate"); |
| 420 | return Imm; |
| 421 | } |
| 422 | |
| 423 | |
| 424 | //===--------------------------------------------------------------------===// |
nothing calls this directly
no test coverage detected
searching dependent graphs…