From 5d2e3756c6fd2130bc682ea7a2487e17fd703d0d Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 27 Mar 2006 20:19:54 +0000 Subject: [PATCH] fixed comment typo svn: r2522 --- src/mzscheme/src/jit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mzscheme/src/jit.c b/src/mzscheme/src/jit.c index f7e1b0a0cf..53d15b80cd 100644 --- a/src/mzscheme/src/jit.c +++ b/src/mzscheme/src/jit.c @@ -3596,7 +3596,7 @@ static int generate_function_getarg(mz_jit_state *jitter, int has_rest, int num_ /* If rands == runstack and there are no rest args, set runstack base to runstack + rands (and don't copy rands), otherwise set base to runstack and proceed normally. Implement this by - optimisitcally assuming rands == runstack, so that there's just + optimistically assuming rands == runstack, so that there's just one jump. Skip this optimization when the procedure has rest args, because we'll have to copy anyway. */ if (!has_rest && num_params) {