1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 20:00:19 +02:00

Merge from upstream lightening

This commit is contained in:
Andy Wingo 2019-04-24 22:57:26 +02:00
commit fa6093c4ef

View file

@ -793,7 +793,6 @@ jit_move_operands(jit_state_t *_jit, jit_operand_t *dst, jit_operand_t *src,
// at least at the end we know that an in-place increment of one // at least at the end we know that an in-place increment of one
// operand won't alias another. // operand won't alias another.
for (size_t i = 0; i < argc; i++) for (size_t i = 0; i < argc; i++)
if (status[i] == TO_MOVE)
apply_addend(_jit, dst[i], src[i]); apply_addend(_jit, dst[i], src[i]);
} }