From 397143d760279158fd5b69fbb3a0ba75ac3c0078 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Wed, 20 Jan 2021 14:46:43 +0700 Subject: [PATCH] xc.c: Remove sparc-only optimization hack. (#254) It looks like this was trying to force a pointer into a register, but only for SPARC. --- src/xc.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/xc.c b/src/xc.c index d0d5c19..5bb1888 100644 --- a/src/xc.c +++ b/src/xc.c @@ -207,12 +207,6 @@ void dispatch(void) { register LispPTR tscache; #endif -#ifdef sparc - register struct state *stateptrcache = MState; -#undef MState -#define MState stateptrcache -#endif - /* OP_FN_COMMON arguments */ DefCell *fn_defcell;