summaryrefslogtreecommitdiff
path: root/longlong.h
diff options
context:
space:
mode:
authorNiels M?ller <nisse@lysator.liu.se>2017-12-27 17:12:48 +0100
committerNiels M?ller <nisse@lysator.liu.se>2017-12-27 17:12:48 +0100
commitd1309a41573c0c116292cc92bb77a52aef8ed059 (patch)
tree5fb5d664f1d81c7d65da0435b5cafa0629a87f9b /longlong.h
parentcc63bc777fb2105af7fc978d063f3dfd5c35aa7c (diff)
downloadgmp-d1309a41573c0c116292cc92bb77a52aef8ed059.tar.gz
Delete incorrect definition of COUNT_LEADING_ZEROS_0 for arm32/arm64.
Diffstat (limited to 'longlong.h')
-rw-r--r--longlong.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/longlong.h b/longlong.h
index 43ec9ad71..985388fe7 100644
--- a/longlong.h
+++ b/longlong.h
@@ -535,7 +535,6 @@ extern UWtype __MPN(udiv_qrnnd) (UWtype *, UWtype, UWtype, UWtype);
#endif /* defined(__ARM_ARCH_2__) ... */
#define count_leading_zeros(count, x) count_leading_zeros_gcc_clz(count, x)
#define count_trailing_zeros(count, x) count_trailing_zeros_gcc_ctz(count, x)
-#define COUNT_LEADING_ZEROS_0 32
#endif /* __arm__ */
#if defined (__aarch64__) && W_TYPE_SIZE == 64
@@ -586,7 +585,6 @@ extern UWtype __MPN(udiv_qrnnd) (UWtype *, UWtype, UWtype, UWtype);
#endif
#define count_leading_zeros(count, x) count_leading_zeros_gcc_clz(count, x)
#define count_trailing_zeros(count, x) count_trailing_zeros_gcc_ctz(count, x)
-#define COUNT_LEADING_ZEROS_0 64
#endif /* __aarch64__ */
#if defined (__clipper__) && W_TYPE_SIZE == 32