From 337ae656edeb7e3c163d14ba4a117c7b3c4cf6dc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20W=C3=BCrdig?= Date: Tue, 17 Oct 2006 09:06:58 +0000 Subject: [PATCH] added #ifdef __GNUC__ --- ir/be/test/convfloat.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ir/be/test/convfloat.c b/ir/be/test/convfloat.c index 0eeb7388e..0f4200143 100644 --- a/ir/be/test/convfloat.c +++ b/ir/be/test/convfloat.c @@ -1,8 +1,10 @@ #include +#ifdef __GNUC__ long long int conv_dbl_to_ll(double d) __attribute__((noinline)); long long int add_dbl_to_ll(double d1, double d2) __attribute__((noinline)); +#endif long long int conv_dbl_to_ll(double d) { return d; -- 2.20.1