Ver Fonte

Hack the 68000 last ditch abort to work for all 68000 targets.

David McCullough há 22 anos atrás
pai
commit
ff250619f5
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      libc/stdlib/abort.c

+ 1 - 1
libc/stdlib/abort.c

@@ -33,7 +33,7 @@ Cambridge, MA 02139, USA.  */
 #elif defined(__ia64__)
 #define ABORT_INSTRUCTION asm ("break 0")
 #elif defined(__mc68000__)
-#define ABORT_INSTRUCTION asm ("illegal")
+#define ABORT_INSTRUCTION asm (".long 0xffffffff")
 #elif defined(__mips__)
 #define ABORT_INSTRUCTION asm ("break 255")
 #elif defined(__s390__)