summaryrefslogtreecommitdiff
path: root/tune
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-06-15 01:57:59 +0200
committerKevin Ryde <user42@zip.com.au>2001-06-15 01:57:59 +0200
commit8dd72f03e419e2439a1d3a3a0364665877bb8eb0 (patch)
treef325a99ffc66f5cb4bbe19ef6393e51827e4601b /tune
parentc7d298cf4dd98dea514e07176c99fc2a21dcb43b (diff)
downloadgmp-8dd72f03e419e2439a1d3a3a0364665877bb8eb0.tar.gz
* tune/common.c: Force a __clz_tab for convenience when testng.
Diffstat (limited to 'tune')
-rw-r--r--tune/common.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tune/common.c b/tune/common.c
index c7e9fc99a..62b39b856 100644
--- a/tune/common.c
+++ b/tune/common.c
@@ -44,6 +44,15 @@ int speed_option_addrs = 0;
int speed_option_verbose = 0;
+/* Provide __clz_tab even if it's not required, for the benefit of new code
+ being tested with many.pl. */
+#ifndef COUNT_LEADING_ZEROS_NEED_CLZ_TAB
+#define COUNT_LEADING_ZEROS_NEED_CLZ_TAB
+#include "mp_clz_tab.c"
+#undef COUNT_LEADING_ZEROS_NEED_CLZ_TAB
+#endif
+
+
void
pentium_wbinvd(void)
{