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

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

[dotgnu-pnet-commits] libjit ChangeLog include/jit/jit-except.h inclu...


From: Aleksey Demakov
Subject: [dotgnu-pnet-commits] libjit ChangeLog include/jit/jit-except.h inclu...
Date: Thu, 29 May 2008 18:53:01 +0000

CVSROOT:        /sources/dotgnu-pnet
Module name:    libjit
Changes by:     Aleksey Demakov <avd>   08/05/29 18:53:01

Modified files:
        .              : ChangeLog 
        include/jit    : jit-except.h jit-common.h 

Log message:
        minor code cleanup

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/libjit/ChangeLog?cvsroot=dotgnu-pnet&r1=1.380&r2=1.381
http://cvs.savannah.gnu.org/viewcvs/libjit/include/jit/jit-except.h?cvsroot=dotgnu-pnet&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/libjit/include/jit/jit-common.h?cvsroot=dotgnu-pnet&r1=1.4&r2=1.5

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/dotgnu-pnet/libjit/ChangeLog,v
retrieving revision 1.380
retrieving revision 1.381
diff -u -b -r1.380 -r1.381
--- ChangeLog   28 May 2008 06:13:47 -0000      1.380
+++ ChangeLog   29 May 2008 18:53:00 -0000      1.381
@@ -1,3 +1,11 @@
+2008-05-30  Aleksey Demakov  <address@hidden>
+
+       * include/jit/jit-common.h: remove unused jit_function_compiled_t
+       type.
+
+       * include/jit/jit-except.h, include/jit/jit-common.h: move
+       JIT_NO_OFFSET from jit-except.h to jit-common.h
+
 2008-05-28  Juan Jesus Garcia de Soria  <address@hidden>
 
        * jit/jit-alloc.c (jit_free_exec): fix VirtualFree arguments.

Index: include/jit/jit-except.h
===================================================================
RCS file: /sources/dotgnu-pnet/libjit/include/jit/jit-except.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- include/jit/jit-except.h    24 Jan 2008 20:12:49 -0000      1.5
+++ include/jit/jit-except.h    29 May 2008 18:53:01 -0000      1.6
@@ -63,7 +63,6 @@
        (jit_context_t context, jit_stack_trace_t trace, unsigned int posn);
 void *jit_stack_trace_get_pc
        (jit_stack_trace_t trace, unsigned int posn);
-#define        JIT_NO_OFFSET   (~((unsigned int)0))
 unsigned int jit_stack_trace_get_offset
        (jit_context_t context, jit_stack_trace_t trace, unsigned int posn);
 void jit_stack_trace_free(jit_stack_trace_t trace);

Index: include/jit/jit-common.h
===================================================================
RCS file: /sources/dotgnu-pnet/libjit/include/jit/jit-common.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- include/jit/jit-common.h    24 Jan 2008 20:12:49 -0000      1.4
+++ include/jit/jit-common.h    29 May 2008 18:53:01 -0000      1.5
@@ -38,11 +38,6 @@
 typedef struct _jit_function *jit_function_t;
 
 /*
- * Opaque type that represents the compiled form of a function.
- */
-typedef void *jit_function_compiled_t;
-
-/*
  * Opaque structure that represents a block.
  */
 typedef struct _jit_block *jit_block_t;
@@ -78,6 +73,11 @@
 #define        jit_label_undefined             ((jit_label_t)~((jit_uint)0))
 
 /*
+ * Value that represents an undefined offset.
+ */
+#define        JIT_NO_OFFSET           (~((unsigned int)0))
+
+/*
  * Function that is used to free user-supplied metadata.
  */
 typedef void (*jit_meta_free_func)(void *data);




reply via email to

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