From: Aleksey Demakov Date: Mon, 28 Aug 2006 14:21:54 +0000 (+0000) Subject: fix is_unsigned usage typo X-Git-Tag: before.move.to.git~205 X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=31ae011dfa561873648fbbec206422080346bf83;p=francis%2Flibjit.git fix is_unsigned usage typo --- diff --git a/ChangeLog b/ChangeLog index 251f90e..83dcb10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-25 Yan Burman + + * jitdynamic/jit-cpp-mangle.c (mangle_type_gcc3): fix typo in + is_unsigned usage (patch #5324) + 2006-08-23 Thomas Cort * jit/jit-apply-alpha.c jit/jit-apply-alpha.h: Fix jit_redirector_size. diff --git a/jitdynamic/jit-cpp-mangle.c b/jitdynamic/jit-cpp-mangle.c index a56ab07..5c00a17 100644 --- a/jitdynamic/jit-cpp-mangle.c +++ b/jitdynamic/jit-cpp-mangle.c @@ -846,7 +846,7 @@ static void mangle_type_gcc3(jit_mangler_t mangler, jit_type_t type) /* Will only happen if the primitive numeric type does not correspond to one of the system types */ jit_nuint size = jit_type_get_size(type); - if(is_unsigned) + if(is_unsigned(type)) add_string(mangler, "uU"); else add_string(mangler, "uI");