| 33 | #define TYPESIG_UNTYPED (UINT64_MAX-1) |
| 34 | |
| 35 | static inline e9tool::Type getType(TypeSig sig, unsigned idx) |
| 36 | { |
| 37 | return (e9tool::Type)(sig >> (64 - 8 * (idx + 1))); |
| 38 | } |
| 39 | |
| 40 | static inline TypeSig setType(TypeSig sig, e9tool::Type t, unsigned idx) |
| 41 | { |
no outgoing calls
no test coverage detected