summaryrefslogtreecommitdiffstats
path: root/meta/packages/gmp/gmp-4.1.2/amd64.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-07-21 10:10:31 +0000
committerRichard Purdie <richard@openedhand.com>2006-07-21 10:10:31 +0000
commitb2f192faabe412adce79534e22efe9fb69ee40e2 (patch)
tree7076c49d4286f8a1733650bd8fbc7161af200d57 /meta/packages/gmp/gmp-4.1.2/amd64.patch
parent2cf0eadf9f730027833af802d7e6c90b44248f80 (diff)
downloadpoky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/gmp/gmp-4.1.2/amd64.patch')
-rw-r--r--meta/packages/gmp/gmp-4.1.2/amd64.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/packages/gmp/gmp-4.1.2/amd64.patch b/meta/packages/gmp/gmp-4.1.2/amd64.patch
new file mode 100644
index 0000000000..bbede7fcc7
--- /dev/null
+++ b/meta/packages/gmp/gmp-4.1.2/amd64.patch
@@ -0,0 +1,16 @@
1Index: gmp-4.1.2/longlong.h
2===================================================================
3--- gmp-4.1.2.orig/longlong.h 2005-06-24 13:38:06.787570452 -0700
4+++ gmp-4.1.2/longlong.h 2005-06-24 13:38:31.539556496 -0700
5@@ -715,8 +715,10 @@
6 } while (0)
7 #define count_trailing_zeros(count, x) \
8 do { \
9+ UDItype __cbtmp; \
10 ASSERT ((x) != 0); \
11- __asm__ ("bsfq %1,%0" : "=r" (count) : "rm" ((UDItype)(x))); \
12+ __asm__ ("bsfq %1,%0" : "=r" (__cbtmp) : "rm" ((UDItype)(x))); \
13+ (count) = __cbtmp; \
14 } while (0)
15 #endif /* x86_64 */
16