From 713eeec7506784f206266b1f2953212474150f8b Mon Sep 17 00:00:00 2001 From: havoc Date: Sat, 10 Dec 2016 20:57:04 +0000 Subject: [PATCH] Disable the __int128 code path for lehmer 128bit RNG because it doesn't compile on an old XCode version I use. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12309 d7cf8633-e32d-0410-b094-e92efae38249 --- mathlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mathlib.c b/mathlib.c index 69203a33..40f03e43 100644 --- a/mathlib.c +++ b/mathlib.c @@ -907,7 +907,7 @@ static unsigned int mul_Lecuyer[4] = { 0x12e15e35, 0xb500f16e, 0x2e714eb2, 0xb37 static void mul128(const unsigned int a[], const unsigned int b[], unsigned int dest[4]) { -#if defined(__GNUC__) && defined(__x86_64__) +#if 0 //defined(__GNUC__) && defined(__x86_64__) unsigned __int128 ia = ((__int128)a[0] << 96) | ((__int128)a[1] << 64) | ((__int128)a[2] << 32) | (a[3]); unsigned __int128 ib = ((__int128)b[0] << 96) | ((__int128)b[1] << 64) | ((__int128)b[2] << 32) | (b[3]); unsigned __int128 id = ia * ib; -- 2.39.2