fixed inline to INLINE
authorChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Fri, 30 Mar 2007 16:24:18 +0000 (16:24 +0000)
committerChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Fri, 30 Mar 2007 16:24:18 +0000 (16:24 +0000)
[r12606]

ir/adt/bitfiddle.h

index 885e0fe..6dd9bd7 100644 (file)
@@ -25,7 +25,7 @@ COMPILETIME_ASSERT(UINT_MAX == 4294967295U, uintmax)
  *
  * @note See hacker's delight, page 27.
  */
-static inline __attribute__((const))
+static INLINE __attribute__((const))
 int add_saturated(int x, int y)
 {
        int sum      = x + y;
@@ -54,7 +54,7 @@ int add_saturated(int x, int y)
  * @param x A 32-bit word.
  * @return The number of bits set in x.
  */
-static inline __attribute__((const))
+static INLINE __attribute__((const))
 unsigned popcnt(unsigned x) {
        x -= ((x >> 1) & 0x55555555);
        x = (x & 0x33333333) + ((x >> 2) & 0x33333333);
@@ -69,7 +69,7 @@ unsigned popcnt(unsigned x) {
  * @param x The word.
  * @return The number of leading (from the most significant bit) zeros.
  */
-static inline __attribute__((const))
+static INLINE __attribute__((const))
 unsigned nlz(unsigned x) {
 #ifdef USE_X86_ASSEMBLY
        unsigned res;
@@ -95,7 +95,7 @@ unsigned nlz(unsigned x) {
  * @param x The word.
  * @return The number of trailing zeros.
  */
-static inline __attribute__((const))
+static INLINE __attribute__((const))
 unsigned ntz(unsigned x) {
 #ifdef USE_X86_ASSEMBLY
        unsigned res;
@@ -139,7 +139,7 @@ unsigned ntz(unsigned x) {
  * Returns the biggest power of 2 that is equal or smaller than @p x
  * (see hackers delight power-of-2 boundaries, page 48)
  */
-static inline __attribute__((const))
+static INLINE __attribute__((const))
 unsigned floor_po2(unsigned x)
 {
 #ifdef USE_X86_ASSEMBLY // in this case nlz is fast
@@ -162,7 +162,7 @@ unsigned floor_po2(unsigned x)
  * @remark x has to be <= 0x8000000 of course
  * @note see hackers delight power-of-2 boundaries, page 48
  */
-static inline __attribute__((const))
+static INLINE __attribute__((const))
 unsigned ceil_po2(unsigned x)
 {
        if(x == 0)
@@ -186,7 +186,7 @@ unsigned ceil_po2(unsigned x)
 /**
  * Tests whether @p x is a power of 2
  */
-static inline __attribute__((const))
+static INLINE __attribute__((const))
 int is_po2(unsigned x)
 {
        return (x & (x-1)) == 0;