shithub: sl

Download patch

ref: 7fa991849d46f3eed307bccb1b3a051516d6c581
parent: 5dc123dd5de90f9129619153b71fcc59ef6eba30
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Mon Jan 20 18:50:13 EST 2025

m68k: remove the computed goto workaround

See https://github.com/autc04/Retro68/issues/275

--- a/flisp.c
+++ b/flisp.c
@@ -912,14 +912,6 @@
 #if defined(COMPUTED_GOTO)
 #pragma GCC diagnostic push
 #pragma GCC diagnostic ignored "-Wpedantic"
-#if defined(__macos__) && defined(__m68k__)
-	/*
-	 * Why the specific section? Because Elf2Mac is not happy otherwise,
-	 * Trying to deal with data referencing text section.
-	 * This solves the problem once and for all.
-	 */
-	__attribute__((section(".text.vm.ops")))
-#endif
 	static const void * const ops[] = {
 #define GOTO_OP_OFFSET(op) [op] = &&op_##op
 #include "vm_goto.inc"