Files
haikuports/dev-libs/libffi/patches/libffi-3.0.13.patchset
Adrien Destugues d08592d323 libffi: gcc2 fix.
* gcc2 does not support __builtin_expect, and ends up defining a
reference to it. #define it to a no-op instead so things actually work.
2014-09-21 19:21:10 +02:00

23 lines
608 B
Plaintext

From 7346bc44a1d1f47b38d556b0cc291fc948725042 Mon Sep 17 00:00:00 2001
From: Adrien Destugues <pulkomandy@pulkomandy.tk>
Date: Sun, 21 Sep 2014 18:59:06 +0200
Subject: gcc2 fix.
diff --git a/include/ffi_common.h b/include/ffi_common.h
index 650ca69..02a1913 100644
--- a/include/ffi_common.h
+++ b/include/ffi_common.h
@@ -115,7 +115,7 @@ typedef signed int SINT64 __attribute__((__mode__(__DI__)));
typedef float FLOAT32;
-#ifndef __GNUC__
+#if !defined(__GNUC__) || __GNUC__ < 3
#define __builtin_expect(x, expected_value) (x)
#endif
#define LIKELY(x) __builtin_expect(!!(x),1)
--
1.8.3.4