We are using __builtin_expect() which is not portable. Define a macro for non-GCC...
authorJuan Jose Garcia Ripoll <jjgarcia@jjgr-2.local>
Mon, 1 Feb 2010 23:04:38 +0000 (00:04 +0100)
committerJuan Jose Garcia Ripoll <jjgarcia@jjgr-2.local>
Mon, 1 Feb 2010 23:04:38 +0000 (00:04 +0100)
src/c/alloc_2.d

index 79e0977..957d48b 100755 (executable)
 #include <winsock.h>
 #endif
 
+#ifndef __GCC__
+# define __builtin_expect(form,value) (form)
+#endif
+
 #ifdef GBC_BOEHM
 
 static void finalize_queued();