dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dotgnu-pnet-commits] libjit ChangeLog jit/jit-unwind.c


From: Aleksey Demakov
Subject: [dotgnu-pnet-commits] libjit ChangeLog jit/jit-unwind.c
Date: Sun, 12 Oct 2008 16:54:24 +0000

CVSROOT:        /sources/dotgnu-pnet
Module name:    libjit
Changes by:     Aleksey Demakov <avd>   08/10/12 16:54:23

Modified files:
        .              : ChangeLog 
        jit            : jit-unwind.c 

Log message:
        fix typos

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/libjit/ChangeLog?cvsroot=dotgnu-pnet&r1=1.389&r2=1.390
http://cvs.savannah.gnu.org/viewcvs/libjit/jit/jit-unwind.c?cvsroot=dotgnu-pnet&r1=1.1&r2=1.2

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/dotgnu-pnet/libjit/ChangeLog,v
retrieving revision 1.389
retrieving revision 1.390
diff -u -b -r1.389 -r1.390
--- ChangeLog   5 Oct 2008 15:34:14 -0000       1.389
+++ ChangeLog   12 Oct 2008 16:54:23 -0000      1.390
@@ -1,3 +1,7 @@
+2008-10-12  Aleksey Demakov  <address@hidden>
+
+       * jit/jit-unwind.c: fix typos.
+
 2008-10-05  Aleksey Demakov  <address@hidden>
 
        * jit/jit-interp.c (_jit_run_function): fix implementation of the

Index: jit/jit-unwind.c
===================================================================
RCS file: /sources/dotgnu-pnet/libjit/jit/jit-unwind.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- jit/jit-unwind.c    29 May 2008 21:03:30 -0000      1.1
+++ jit/jit-unwind.c    12 Oct 2008 16:54:23 -0000      1.2
@@ -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 @@
 
        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 @@
 
        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 @@
                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);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]