1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-04 22:40:25 +02:00

Remove wrong comment after cut and paste

This commit is contained in:
pcpa 2015-05-05 20:57:18 -03:00
parent cc217f0608
commit b42bb8b7a1

View file

@ -3350,10 +3350,7 @@ _vastart(jit_state_t *_jit, jit_int32_t r0)
addi(r0, _FP_REGNO, _jitc->function->vaoff); addi(r0, _FP_REGNO, _jitc->function->vaoff);
reg = jit_get_reg(jit_class_gpr); reg = jit_get_reg(jit_class_gpr);
/* Initialize stack pointer to the first stack argument. /* Initialize stack pointer to the first stack argument. */
* The -16 is to account for the 4 argument registers
* always saved, and _jitc->function->vagp is to account
* for declared arguments. */
addi(rn(reg), _FP_REGNO, gpr_save_area - addi(rn(reg), _FP_REGNO, gpr_save_area -
8 * sizeof(jit_word_t) + _jitc->function->vagp * sizeof(jit_word_t)); 8 * sizeof(jit_word_t) + _jitc->function->vagp * sizeof(jit_word_t));
stxi(offsetof(jit_va_list_t, stack), r0, rn(reg)); stxi(offsetof(jit_va_list_t, stack), r0, rn(reg));