From: Klaus Treichel Date: Mon, 4 Oct 2010 18:08:45 +0000 (+0200) Subject: Add missing typedef in the declaration of the _jit_intrinsic_signature X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=00b8fe8ef2376767a2780977d3c40f7f07fb32f3;p=francis%2Flibjit.git Add missing typedef in the declaration of the _jit_intrinsic_signature enumaeration in jit/jit-internal.h . (Really Noah Lavine) --- diff --git a/ChangeLog b/ChangeLog index 45765e2..9614015 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-10-04 Klaus Treichel + + * jit/jit-internal.h: Add missing typedef in the declaration of the + _jit_intrinsic_signature enumaeration. (Really Noah Lavine) + 2010-09-21 Klaus Treichel * config/jit-opcodes.ops: Add definitions for the opcode's diff --git a/jit/jit-internal.h b/jit/jit-internal.h index 83d0bb4..5d152ca 100644 --- a/jit/jit-internal.h +++ b/jit/jit-internal.h @@ -776,7 +776,7 @@ extern struct _jit_type const _jit_type_void_ptr_def; * Special signatures are conv and conv_ovf for type conversions without * and with overflow checks. */ -enum +typedef enum { JIT_SIG_NONE = 0, JIT_SIG_i_i = 1,