export const intTypeForBits = (x: number): IntType =>
    x > 16 ? "i32" : x > 8 ? "i16" : "i8";