From cfa51abba5be174106e78ce7e91fd2cec736d1c3 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 30 Oct 2008 09:44:31 +0000 Subject: *** empty log message *** --- coro.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'coro.c') diff --git a/coro.c b/coro.c index 20266e7..909f396 100644 --- a/coro.c +++ b/coro.c @@ -326,9 +326,14 @@ void coro_create (coro_context *ctx, # elif CORO_ASM ctx->sp = (volatile void **)(ssize + (char *)sptr); + /* we try to allow for both functions with and without frame pointers */ *--ctx->sp = (void *)coro_init; - *--ctx->sp = (void *)coro_init; // this is needed when the prologue saves ebp - ctx->sp -= NUM_SAVED; + { + void **frame = ctx->sp - 1; + int i; + for (i = NUM_SAVED; i--; ) + *--ctx->sp = frame; + } # endif -- cgit v1.2.3