replaced inline by __inline to allow it to be compiled in gcc and msvc mode
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 13 Jun 2007 14:25:49 +0000 (14:25 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 13 Jun 2007 14:25:49 +0000 (14:25 +0000)
[r14464]

ir/be/test/fehler18.c

index 47db6f7..3ee2366 100644 (file)
@@ -4,7 +4,7 @@
 #define HASH_MASK (HASH_SIZE-1)
 #define H_SHIFT  ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)
 
-static inline
+static __inline
 void UPDATE_HASH(unsigned *h, unsigned c) {
            *h = (((*h) << H_SHIFT) ^ (c)) & HASH_MASK;
 }