We are using __builtin_expect() which is not portable. Define a macro for non-GCC compilers.

This commit is contained in:
Juan Jose Garcia Ripoll 2010-02-02 00:04:38 +01:00
parent 8f51774f56
commit e30ccfaec9

View file

@ -25,6 +25,10 @@
#include <winsock.h>
#endif
#ifndef __GCC__
# define __builtin_expect(form,value) (form)
#endif
#ifdef GBC_BOEHM
static void finalize_queued();