mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-16 06:12:25 -08:00
We are using __builtin_expect() which is not portable. Define a macro for non-GCC compilers.
This commit is contained in:
parent
8f51774f56
commit
e30ccfaec9
1 changed files with 4 additions and 0 deletions
|
|
@ -25,6 +25,10 @@
|
|||
#include <winsock.h>
|
||||
#endif
|
||||
|
||||
#ifndef __GCC__
|
||||
# define __builtin_expect(form,value) (form)
|
||||
#endif
|
||||
|
||||
#ifdef GBC_BOEHM
|
||||
|
||||
static void finalize_queued();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue