diff options
| author | Peter Zhu <peter@peterzhu.ca> | 2024-08-29 15:05:00 -0400 |
|---|---|---|
| committer | Peter Zhu <peter@peterzhu.ca> | 2024-08-30 10:03:17 -0400 |
| commit | e3f00df2278f8b23278cffc74db11b10c4bf030b (patch) | |
| tree | 2e82464100f5ad10f348e22c4224105a1436330e | |
| parent | 830ff66e2c7315470580dd8531f4c10b0200aed5 (diff) | |
Drop support for Motorola 68000
The last Motorla 68000 architecture CPU was released 1994, so we can
probably drop support for it.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11504
| -rw-r--r-- | gc.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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 { |
