use INLINE instead of inline
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 8 Jan 2008 22:12:09 +0000 (22:12 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Tue, 8 Jan 2008 22:12:09 +0000 (22:12 +0000)
[r18842]

adt/bitfiddle.h
adt/hash_string.h

index 624a2d6..827d21a 100644 (file)
@@ -24,7 +24,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;
@@ -53,7 +53,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);
@@ -68,7 +68,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;
@@ -94,7 +94,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;
@@ -161,7 +161,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)
@@ -185,7 +185,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;
index f2557a2..a1663e9 100644 (file)
@@ -4,7 +4,7 @@
 #define _FIRM_FNV_OFFSET_BASIS 2166136261U
 #define _FIRM_FNV_FNV_PRIME 16777619U
 
-static inline __attribute__((pure))
+static INLINE __attribute__((pure))
 unsigned hash_string(const char* str)
 {
        const unsigned char *p;
@@ -18,7 +18,7 @@ unsigned hash_string(const char* str)
        return hash;
 }
 
-static inline __attribute__((pure))
+static INLINE __attribute__((pure))
 unsigned hash_string_size(const char* str, size_t size)
 {
        size_t i;