added #ifdef __GNUC__
authorChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Tue, 17 Oct 2006 09:06:58 +0000 (09:06 +0000)
committerChristian Würdig <chriswue@ipd.info.uni-karlsruhe.de>
Tue, 17 Oct 2006 09:06:58 +0000 (09:06 +0000)
ir/be/test/convfloat.c

index 0eeb738..0f42001 100644 (file)
@@ -1,8 +1,10 @@
 #include <stdio.h>
 
+#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;