From 16093186ee02dc2c14eae79f546c73dfe94f107f Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 16 Jan 2021 10:44:12 +0700 Subject: [PATCH] Remove incorrect SUN3_OS3_OS4_il ifdef. (#228) The definition of a function was ifdef'd out, making it seem like perhaps there was an assembly implementation, but there isn't. That platform support is dead weight also at this point, so removing this because it isn't something that will come back is fine. --- src/sxhash.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/sxhash.c b/src/sxhash.c index 1073635..bcd3550 100644 --- a/src/sxhash.c +++ b/src/sxhash.c @@ -111,14 +111,11 @@ static unsigned short sxhash(LispPTR obj) { } } -#ifndef SUN3_OS3_OR_OS4_IL /* Rotates the 16-bit work to the left 7 bits (or to the right 9 bits) */ static unsigned short sxhash_rotate(short unsigned int value) { return ((value << 7) | ((value >> 9) & 0x7f)); } -#endif - static unsigned short sxhash_string(OneDArray *obj) { unsigned len, offset; register unsigned short hash = 0;