X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=toolchain%2FuClibc%2Fpatches-0.9.30.1%2F400-gcc4.4-fixes.patch;h=1b6eee8305e42c68c7804137353b3e0ce45ff5ea;hb=9eae7d0c564ff72beb5208d9211128204bdf94e9;hp=6292457e7a7b8c707e09aa9da025e6e2e04ac195;hpb=4abf567ae8a2ca1f0689c6cbe96fe67f06026a56;p=openwrt-10.03%2F.git diff --git a/toolchain/uClibc/patches-0.9.30.1/400-gcc4.4-fixes.patch b/toolchain/uClibc/patches-0.9.30.1/400-gcc4.4-fixes.patch index 6292457e7..1b6eee830 100644 --- a/toolchain/uClibc/patches-0.9.30.1/400-gcc4.4-fixes.patch +++ b/toolchain/uClibc/patches-0.9.30.1/400-gcc4.4-fixes.patch @@ -818,30 +818,6 @@ index d912a06..0be57bf 100644 while (*new_path == '/' && new_path > got_path) new_path--; -- -The test here is a constant expression and will compile out. -For platforms that don't need the shift the code gets slightly smaller -and simpler, for those that do the result is unchanged. - -Signed-off-by: Ron Lee ---- - libc/sysdeps/linux/arm/posix_fadvise.c | 6 ++++-- - 1 files changed, 4 insertions(+), 2 deletions(-) - -Index: uClibc-0.9.30.1/libc/sysdeps/linux/arm/posix_fadvise.c -=================================================================== ---- uClibc-0.9.30.1.orig/libc/sysdeps/linux/arm/posix_fadvise.c 2007-05-31 10:21:38.000000000 +0200 -+++ uClibc-0.9.30.1/libc/sysdeps/linux/arm/posix_fadvise.c 2009-07-06 21:19:18.000000000 +0200 -@@ -18,8 +18,8 @@ - { - INTERNAL_SYSCALL_DECL (err); - int ret = INTERNAL_SYSCALL (arm_fadvise64_64, err, 6, fd, advise, -- __LONG_LONG_PAIR ((long)(offset >> 32), (long)offset), -- __LONG_LONG_PAIR ((long)(len >> 32), (long)len)); -+ __LONG_LONG_PAIR (HIGH_BITS(offset), (long)offset), -+ __LONG_LONG_PAIR (HIGH_BITS(len), (long)len)); - - if (INTERNAL_SYSCALL_ERROR_P (ret, err)) - return INTERNAL_SYSCALL_ERRNO (ret, err); Signed-off-by: Ron Lee --- ldso/ldso/dl-elf.c | 4 +++- @@ -900,3 +876,41 @@ Index: uClibc-0.9.30.1/libc/inet/getaddrinfo.c } } +From 8ee834680d39677a60e26a0de4ece2f0c1ebbde2 Mon Sep 17 00:00:00 2001 +From: Ron +Date: Sat, 27 Jun 2009 04:44:27 +0930 +Subject: [PATCH] Avoid warnings about shifting more bits than we have + +The test here is a constant expression and will compile out. +For platforms that don't need the shift the code gets slightly smaller +and simpler, for those that do the result is unchanged. + +Signed-off-by: Ron Lee +Signed-off-by: Mike Frysinger +--- + libc/sysdeps/linux/arm/posix_fadvise.c | 6 ++++-- + 1 files changed, 4 insertions(+), 2 deletions(-) + +--- a/libc/sysdeps/linux/arm/posix_fadvise.c ++++ b/libc/sysdeps/linux/arm/posix_fadvise.c +@@ -10,6 +10,9 @@ + #include + #include + #if defined __NR_arm_fadvise64_64 ++ ++#define HIGH_BITS(x) (sizeof(x) > 4 ? (x) >> 32 : 0) ++ + /* This is for the ARM version of fadvise64_64 which swaps the params + * * about to avoid having ABI compat issues + * */ +@@ -18,8 +21,8 @@ + { + INTERNAL_SYSCALL_DECL (err); + int ret = INTERNAL_SYSCALL (arm_fadvise64_64, err, 6, fd, advise, +- __LONG_LONG_PAIR ((long)(offset >> 32), (long)offset), +- __LONG_LONG_PAIR ((long)(len >> 32), (long)len)); ++ __LONG_LONG_PAIR (HIGH_BITS(offset), (long)offset), ++ __LONG_LONG_PAIR (HIGH_BITS(len), (long)len)); + + if (INTERNAL_SYSCALL_ERROR_P (ret, err)) + return INTERNAL_SYSCALL_ERRNO (ret, err);