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