List:Commits« Previous MessageNext Message »
From:vvaintroub Date:March 24 2008 9:41pm
Subject:bk commit into 6.0 tree (vlad:1.2600)
View as plain text  
Below is the list of changes that have just been committed into a local
6.0 repository of vlad.  When vlad does a push these changes
will be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2008-03-24 17:41:42-04:00, vlad@stripped +1 -0
  Correct compiler error on linux x86 in optimized build
  (function longlong2str is replaced with ll2str)

  strings/longlong2str_asm.c@stripped, 2008-03-24 17:40:44-04:00, vlad@stripped +3 -2
    Correct compiler error on linux x86 in optimized build
    (function longlong2str is replaced with ll2str)

diff -Nrup a/strings/longlong2str_asm.c b/strings/longlong2str_asm.c
--- a/strings/longlong2str_asm.c	2006-12-23 14:04:30 -05:00
+++ b/strings/longlong2str_asm.c	2008-03-24 17:40:44 -04:00
@@ -26,7 +26,8 @@
 extern char *longlong2str_with_dig_vector(longlong val,char *dst,int radix,
                                           const char *dig_vector);
 
-char *longlong2str(longlong val,char *dst,int radix)
+char *ll2str(longlong val,char *dst,int radix, int upcase)
 {
-  return longlong2str_with_dig_vector(val, dst, radix, _dig_vec_upper);
+  return longlong2str_with_dig_vector(val, dst, radix, 
+           upcase?_dig_vec_upper:_dig_vec_lower);
 }
Thread
bk commit into 6.0 tree (vlad:1.2600)vvaintroub24 Mar