get small int that fits the range
(low, high)
| 47 | |
| 48 | |
| 49 | def _min_int(low, high): |
| 50 | """ get small int that fits the range """ |
| 51 | if high <= i1.max and low >= i1.min: |
| 52 | return int8 |
| 53 | if high <= i2.max and low >= i2.min: |
| 54 | return int16 |
| 55 | if high <= i4.max and low >= i4.min: |
| 56 | return int32 |
| 57 | return int64 |
| 58 | |
| 59 | |
| 60 | def _flip_dispatcher(m): |
no outgoing calls
no test coverage detected
searching dependent graphs…