diff options
Diffstat (limited to 'meta/packages/gmp/gmp-4.1.2/amd64.patch')
-rw-r--r-- | meta/packages/gmp/gmp-4.1.2/amd64.patch | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/meta/packages/gmp/gmp-4.1.2/amd64.patch b/meta/packages/gmp/gmp-4.1.2/amd64.patch deleted file mode 100644 index bbede7fcc7..0000000000 --- a/meta/packages/gmp/gmp-4.1.2/amd64.patch +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | Index: 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 | |||