]> git.unchartedbackwaters.co.uk Git - francis/libjit.git/commitdiff
fix typos
authorAleksey Demakov <ademakov@gmail.com>
Sun, 12 Oct 2008 16:54:23 +0000 (16:54 +0000)
committerAleksey Demakov <ademakov@gmail.com>
Sun, 12 Oct 2008 16:54:23 +0000 (16:54 +0000)
ChangeLog
jit/jit-unwind.c

index 687a02a311047f07aa017210c6a4751c5501753d..289fb9a1be6b2374b1d199c9455fb08b56d2b10f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-10-12  Aleksey Demakov  <ademakov@gmail.com>
+
+       * jit/jit-unwind.c: fix typos.
+
 2008-10-05  Aleksey Demakov  <ademakov@gmail.com>
 
        * jit/jit-interp.c (_jit_run_function): fix implementation of the
index d88d6de48507698100d5582f9f188f239a283f70..a5f9320ccf275e60818e5e4a2f05924725aac93c 100644 (file)
@@ -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);