summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2015-12-15 17:02:43 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-12-15 17:02:43 +1100
commit58cc12860727eb2a3c6c8b535c269abee9b2c7fc (patch)
tree20b7b7b0dc3025cbfbbca9c8c732929a4defe13d
parent971e7410f0c3e65a956b3a8f95739a35978e6ccb (diff)
downloadffs-58cc12860727eb2a3c6c8b535c269abee9b2c7fc.tar.gz
ffs-58cc12860727eb2a3c6c8b535c269abee9b2c7fc.zip
remove unused ctz builtin defines
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r--clib/builtin.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/clib/builtin.h b/clib/builtin.h
index f0089b0..79692f4 100644
--- a/clib/builtin.h
+++ b/clib/builtin.h
@@ -41,54 +41,6 @@
#define popcount(x) __builtin_popcount((x))
/*!
- * @def ctz(x)
- * @hideinitializer
- * @brief Count trailing zeros of an int
- * @param x [in] @em int value
- */
-#define ctz(x) __builtin_ctz((x))
-
-/*!
- * @def ctzl(x)
- * @hideinitializer
- * @brief Count trailing zeros of a long
- * @param x [in] @em long value
- */
-#define ctzl(x) __builtin_ctzl((x))
-
-/*!
- * @def ctzll(x)
- * @hideinitializer
- * @brief Count trailing zeros of a long long
- * @param x [in] @em long @em long value
- */
-#define ctzll(x) __builtin_ctzll((x))
-
-/*!
- * @def clz(x)
- * @hideinitializer
- * @brief Count leading zeros of an int
- * @param x [in] @em int value
- */
-#define clz(x) __builtin_clzl((x))
-
-/*!
- * @def clzl(x)
- * @hideinitializer
- * @brief Count leading zeros of a long
- * @param x [in] @em long value
- */
-#define clzl(x) __builtin_clzl((x))
-
-/*!
- * @def clzll(x)
- * @hideinitializer
- * @brief Count leading zeros of a long long
- * @param x [in] @em long long value
- */
-#define clzll(x) __builtin_clzll((x))
-
-/*!
* @def caller(x)
* @hideinitializer
* @brief Return callers return address
OpenPOWER on IntegriCloud