Drop support for Motorola 68000

The last Motorla 68000 architecture CPU was released 1994, so we can
probably drop support for it.
This commit is contained in:
Peter Zhu 2024-08-29 15:05:00 -04:00
parent 830ff66e2c
commit e3f00df227
Notes: git 2024-08-30 14:03:36 +00:00

5
gc.c
View File

@ -2244,11 +2244,6 @@ static void
each_stack_location(const VALUE *stack_start, const VALUE *stack_end, void (*cb)(void *data, VALUE obj), void *data)
{
gc_mark_locations(stack_start, stack_end, cb, data);
#if defined(__mc68000__)
gc_mark_locations((VALUE*)((char*)stack_start + 2),
(VALUE*)((char*)stack_end - 2), cb, data);
#endif
}
struct mark_machine_stack_location_maybe_data {