From d6b7ba5c973151fccc840b3ead478f5274c25842 Mon Sep 17 00:00:00 2001 From: Aleksey Demakov Date: Sun, 12 Oct 2008 16:54:23 +0000 Subject: [PATCH] fix typos --- ChangeLog | 4 ++++ jit/jit-unwind.c | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 687a02a..289fb9a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-10-12 Aleksey Demakov + + * jit/jit-unwind.c: fix typos. + 2008-10-05 Aleksey Demakov * jit/jit-interp.c (_jit_run_function): fix implementation of the diff --git a/jit/jit-unwind.c b/jit/jit-unwind.c index d88d6de..a5f9320 100644 --- a/jit/jit-unwind.c +++ b/jit/jit-unwind.c @@ -30,7 +30,7 @@ int jit_unwind_init(jit_unwind_context_t *unwind, jit_context_t context) { -#if defined(JIT_BACKENED_INTERP) || JIT_APPLY_BROKEN_FRAME_BUILTINS != 0 +#if defined(JIT_BACKEND_INTERP) || JIT_APPLY_BROKEN_FRAME_BUILTINS != 0 jit_thread_control_t control; control = _jit_thread_get_control(); @@ -78,7 +78,7 @@ jit_unwind_next(jit_unwind_context_t *unwind) unwind->cache = 0; -#if defined(JIT_BACKENED_INTERP) || JIT_APPLY_BROKEN_FRAME_BUILTINS != 0 +#if defined(JIT_BACKEND_INTERP) || JIT_APPLY_BROKEN_FRAME_BUILTINS != 0 unwind->frame = ((jit_backtrace_t) unwind->frame)->parent; return (unwind->frame != 0); #else @@ -119,7 +119,7 @@ jit_unwind_next_pc(jit_unwind_context_t *unwind) unwind->cache = 0; -#if defined(JIT_BACKENED_INTERP) || JIT_APPLY_BROKEN_FRAME_BUILTINS != 0 +#if defined(JIT_BACKEND_INTERP) || JIT_APPLY_BROKEN_FRAME_BUILTINS != 0 unwind->frame = ((jit_backtrace_t) unwind->frame)->parent; #else unwind->frame = jit_get_next_frame_address(unwind->frame); @@ -135,7 +135,7 @@ jit_unwind_get_pc(jit_unwind_context_t *unwind) return 0; } -#if defined(JIT_BACKENED_INTERP) || JIT_APPLY_BROKEN_FRAME_BUILTINS != 0 +#if defined(JIT_BACKEND_INTERP) || JIT_APPLY_BROKEN_FRAME_BUILTINS != 0 return ((jit_backtrace_t) unwind->frame)->pc; #else return jit_get_return_address(unwind->frame); -- 2.47.3