}
 }
 
-static void __reg_combine_32_into_64(struct bpf_reg_state *reg)
-{
-       /* special case when 64-bit register has upper 32-bit register
-        * zeroed. Typically happens after zext or <<32, >>32 sequence
-        * allowing us to use 32-bit bounds directly,
-        */
-       if (tnum_equals_const(tnum_clear_subreg(reg->var_off), 0)) {
-               __reg_assign_32_into_64(reg);
-       } else {
-               /* Otherwise the best we can do is push lower 32bit known and
-                * unknown bits into register (var_off set from jmp logic)
-                * then learn as much as possible from the 64-bit tnum
-                * known and unknown bits. The previous smin/smax bounds are
-                * invalid here because of jmp32 compare so mark them unknown
-                * so they do not impact tnum bounds calculation.
-                */
-               __mark_reg64_unbounded(reg);
-       }
-       reg_bounds_sync(reg);
-}
-
-static bool __reg64_bound_s32(s64 a)
-{
-       return a >= S32_MIN && a <= S32_MAX;
-}
-
-static bool __reg64_bound_u32(u64 a)
-{
-       return a >= U32_MIN && a <= U32_MAX;
-}
-
-static void __reg_combine_64_into_32(struct bpf_reg_state *reg)
-{
-       __mark_reg32_unbounded(reg);
-       if (__reg64_bound_s32(reg->smin_value) && __reg64_bound_s32(reg->smax_value)) {
-               reg->s32_min_value = (s32)reg->smin_value;
-               reg->s32_max_value = (s32)reg->smax_value;
-       }
-       if (__reg64_bound_u32(reg->umin_value) && __reg64_bound_u32(reg->umax_value)) {
-               reg->u32_min_value = (u32)reg->umin_value;
-               reg->u32_max_value = (u32)reg->umax_value;
-       }
-       reg_bounds_sync(reg);
-}
-
 /* Mark a register as having a completely unknown (scalar) value. */
 static void __mark_reg_unknown(const struct bpf_verifier_env *env,
                               struct bpf_reg_state *reg)
         * values are also truncated so we push 64-bit bounds into
         * 32-bit bounds. Above were truncated < 32-bits already.
         */
-       if (size >= 4)
-               return;
-       __reg_combine_64_into_32(reg);
+       if (size < 4) {
+               __mark_reg32_unbounded(reg);
+               reg_bounds_sync(reg);
+       }
 }
 
 static void set_sext64_default_val(struct bpf_reg_state *reg, int size)
                                             tnum_subreg(false_32off));
                true_reg->var_off = tnum_or(tnum_clear_subreg(true_64off),
                                            tnum_subreg(true_32off));
-               __reg_combine_32_into_64(false_reg);
-               __reg_combine_32_into_64(true_reg);
+               reg_bounds_sync(false_reg);
+               reg_bounds_sync(true_reg);
        } else {
                false_reg->var_off = false_64off;
                true_reg->var_off = true_64off;
-               __reg_combine_64_into_32(false_reg);
-               __reg_combine_64_into_32(true_reg);
+               reg_bounds_sync(false_reg);
+               reg_bounds_sync(true_reg);
        }
 }