Merge remote-tracking branch 'origin/trunk' into list-str-capacity

This commit is contained in:
Folkert 2022-03-30 14:07:17 +02:00
commit c73c01aa34
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
116 changed files with 3265 additions and 1537 deletions

View file

@ -6677,12 +6677,12 @@ fn build_int_binop<'a, 'ctx, 'env>(
}
NumShiftRightBy => {
// NOTE arguments are flipped;
bd.build_right_shift(rhs, lhs, false, "int_shift_right")
bd.build_right_shift(rhs, lhs, true, "int_shift_right")
.into()
}
NumShiftRightZfBy => {
// NOTE arguments are flipped;
bd.build_right_shift(rhs, lhs, true, "int_shift_right_zf")
bd.build_right_shift(rhs, lhs, false, "int_shift_right_zf")
.into()
}