From b42bb8b7a18561b80f40435ce9c14ea4a70532a9 Mon Sep 17 00:00:00 2001 From: pcpa Date: Tue, 5 May 2015 20:57:18 -0300 Subject: [PATCH] Remove wrong comment after cut and paste --- lib/jit_ppc-cpu.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/jit_ppc-cpu.c b/lib/jit_ppc-cpu.c index 24244d21a..e3f9114ff 100644 --- a/lib/jit_ppc-cpu.c +++ b/lib/jit_ppc-cpu.c @@ -3350,10 +3350,7 @@ _vastart(jit_state_t *_jit, jit_int32_t r0) addi(r0, _FP_REGNO, _jitc->function->vaoff); reg = jit_get_reg(jit_class_gpr); - /* 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. */ + /* Initialize stack pointer to the first stack argument. */ addi(rn(reg), _FP_REGNO, gpr_save_area - 8 * sizeof(jit_word_t) + _jitc->function->vagp * sizeof(jit_word_t)); stxi(offsetof(jit_va_list_t, stack), r0, rn(reg));