From: Michael Beck Date: Wed, 13 Jun 2007 14:25:49 +0000 (+0000) Subject: replaced inline by __inline to allow it to be compiled in gcc and msvc mode X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=29abea6f48878e5cf96a7e6b4a8398384a1c60e0;p=libfirm replaced inline by __inline to allow it to be compiled in gcc and msvc mode [r14464] --- diff --git a/ir/be/test/fehler18.c b/ir/be/test/fehler18.c index 47db6f74d..3ee23665b 100644 --- a/ir/be/test/fehler18.c +++ b/ir/be/test/fehler18.c @@ -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; }