__builtin_expect is a gcc 3.x feature. define it out for gcc 2.95.
authorMatthieu Herrb <matthieu.herrb@laas.fr>
Sat, 13 Sep 2008 17:07:28 +0000 (19:07 +0200)
committerBrian <brianp@vmware.com>
Sun, 11 Jan 2009 23:44:36 +0000 (16:44 -0700)
Patch suggested by miod@. Thanks.

src/mesa/glapi/glthread.h

index e2765ce..27ccd2e 100644 (file)
@@ -298,6 +298,10 @@ _glthread_GetTSD(_glthread_TSD *);
 extern void
 _glthread_SetTSD(_glthread_TSD *, void *);
 
+#if !defined __GNUC__ || __GNUC__ < 3
+#  define __builtin_expect(x, y) x
+#endif
+
 #if defined(GLX_USE_TLS)
 
 extern __thread struct _glapi_table * _glapi_tls_Dispatch