From: Michael Beck Date: Wed, 13 Jun 2007 14:27:35 +0000 (+0000) Subject: replaced inline by __inline to allow to be compiled in gcc and msvc modes X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=6e998f91ca26b38b9022cfe5f3316bd3074bf39f;p=libfirm replaced inline by __inline to allow to be compiled in gcc and msvc modes [r14465] --- diff --git a/ir/be/test/condeval.c b/ir/be/test/condeval.c index cc3407cd9..acec5753f 100644 --- a/ir/be/test/condeval.c +++ b/ir/be/test/condeval.c @@ -9,7 +9,7 @@ int f(int x) #if 1 -static inline int g(int x) +static __inline int g(int x) { return x == 42; } @@ -70,7 +70,7 @@ void j(void) #if 1 -static inline int k(int x) +static __inline int k(int x) { if (x < 23) x = 23; if (x > 42) x = 42;