]> git.unchartedbackwaters.co.uk Git - francis/libjit.git/commitdiff
fix is_unsigned usage typo
authorAleksey Demakov <ademakov@gmail.com>
Mon, 28 Aug 2006 14:21:54 +0000 (14:21 +0000)
committerAleksey Demakov <ademakov@gmail.com>
Mon, 28 Aug 2006 14:21:54 +0000 (14:21 +0000)
ChangeLog
jitdynamic/jit-cpp-mangle.c

index 251f90ed668136471f49c1ec61d11ed981dee676..83dcb101af30632eb71260863d84e97a5cd07f2c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-25  Yan Burman  <yan_952@hotmail.com>
+
+       * jitdynamic/jit-cpp-mangle.c (mangle_type_gcc3): fix typo in
+       is_unsigned usage (patch #5324)
+
 2006-08-23  Thomas Cort  <linuxgeek@gmail.com>
 
        * jit/jit-apply-alpha.c jit/jit-apply-alpha.h: Fix jit_redirector_size.
index a56ab07ff1d30e9744e8605a61eb93ec4687dbb3..5c00a17e8cb1a5be8c3daa387d4ebed1b4df0259 100644 (file)
@@ -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");