From: havoc Date: Sat, 10 Dec 2016 20:57:04 +0000 (+0000) Subject: Disable the __int128 code path for lehmer 128bit RNG because it doesn't X-Git-Tag: xonotic-v0.8.5~88^2~13 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=713eeec7506784f206266b1f2953212474150f8b 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 --- 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;