From e3f00df2278f8b23278cffc74db11b10c4bf030b Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Thu, 29 Aug 2024 15:05:00 -0400 Subject: [PATCH] Drop support for Motorola 68000 The last Motorla 68000 architecture CPU was released 1994, so we can probably drop support for it. --- gc.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gc.c b/gc.c index 899a846af2..5541852737 100644 --- a/gc.c +++ b/gc.c @@ -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 {