From 8cd1e9ff81679c1557b212f1fe9b8949cdcb1119 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 6 Jul 2011 17:10:11 -0600 Subject: [PATCH] fix JIT support for property accessor with failure argument --- src/racket/src/jitcommon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/racket/src/jitcommon.c b/src/racket/src/jitcommon.c index 9b3d9e51a1..bc63ff91d8 100644 --- a/src/racket/src/jitcommon.c +++ b/src/racket/src/jitcommon.c @@ -1734,7 +1734,7 @@ static int common4b(mz_jit_state *jitter, void *_data) } jit_retval(JIT_R0); VALIDATE_RESULT(JIT_R0); - if (ii == 1) { + if (i == 1) { /* second argument was pushed early */ jit_addi_p(JIT_RUNSTACK, JIT_RUNSTACK, WORDS_TO_BYTES(2)); } else {