aboutsummaryrefslogtreecommitdiff
path: root/math/gmp/files/patch-longlong.h
diff options
context:
space:
mode:
Diffstat (limited to 'math/gmp/files/patch-longlong.h')
-rw-r--r--math/gmp/files/patch-longlong.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/math/gmp/files/patch-longlong.h b/math/gmp/files/patch-longlong.h
deleted file mode 100644
index 105464b6ae63..000000000000
--- a/math/gmp/files/patch-longlong.h
+++ /dev/null
@@ -1,14 +0,0 @@
---- longlong.h.old 2003-07-29 17:10:52.000000000 +1000
-+++ longlong.h 2003-07-29 17:12:16.000000000 +1000
-@@ -715,8 +715,10 @@
- } while (0)
- #define count_trailing_zeros(count, x) \
- do { \
-+ UDItype __cbtmp; \
- ASSERT ((x) != 0); \
-- __asm__ ("bsfq %1,%0" : "=r" (count) : "rm" ((UDItype)(x))); \
-+ __asm__ ("bsfq %1,%0" : "=r" (__cbtmp) : "rm" ((UDItype)(x))); \
-+ (count) = __cbtmp; \
- } while (0)
- #endif /* x86_64 */
-