From 6e998f91ca26b38b9022cfe5f3316bd3074bf39f Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 13 Jun 2007 14:27:35 +0000 Subject: [PATCH] replaced inline by __inline to allow to be compiled in gcc and msvc modes [r14465] --- ir/be/test/condeval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.20.1