Since the br_table instruction takes an i32, switches over
i64s (and larger integers) must use the i32.wrap_i64 instruction to
truncate the table index. This truncation makes numbers just over 2^32
indistinguishable from small numbers, so it was a miscompilation to
omit the range check preceding these br_tables. This change fixes the
problem by skipping the "fixing" of the br_table when the range check
is an i64 instruction.
Fixes PR46447.