From d71898142647394b9b3e6a941abb8d054aa3fb6a Mon Sep 17 00:00:00 2001 From: Thomas Cort Date: Sun, 16 Jul 2006 03:18:15 +0000 Subject: [PATCH] Fix a typo in jit/jit-apply-alpha.c --- jit/jit-apply-alpha.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jit/jit-apply-alpha.c b/jit/jit-apply-alpha.c index 3fa4ba1..9a7646b 100644 --- a/jit/jit-apply-alpha.c +++ b/jit/jit-apply-alpha.c @@ -32,7 +32,7 @@ void _jit_create_closure(unsigned char *buf, void *func, void *closure, void *_t alpha_lda( inst,ALPHA_GP,ALPHA_GP,0); /* Allocate space for a new stack frame. */ - alpha_lda(inst,ALPHA_SP,ALPHA_SP,-(14*8)); + alpha_lda(inst,ALPHA_SP,ALPHA_SP,-(13*8)); /* Save the return address. */ alpha_stq(inst,ALPHA_RA,ALPHA_SP,0*8); @@ -76,7 +76,7 @@ void _jit_create_closure(unsigned char *buf, void *func, void *closure, void *_t alpha_ldt(inst,ALPHA_FA5,ALPHA_SP,12*8); /* restore the stack pointer */ - alpha_lda(inst,ALPHA_SP,ALPHA_SP,(8*13)); + alpha_lda(inst,ALPHA_SP,ALPHA_SP,(13*8)); } void *_jit_create_redirector(unsigned char *buf, void *func, void *user_data, int abi) { -- 2.47.3