From f0c792d8d21c917cab66cf6d0c70567693aa7cdc Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Wed, 15 Feb 2017 13:46:09 -0700 Subject: [PATCH] Punt warning about "copying large block"s (e.g. Edwin buffers). --- src/microcode/gcloop.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/microcode/gcloop.c b/src/microcode/gcloop.c index 42a859ed9..4d50a606e 100644 --- a/src/microcode/gcloop.c +++ b/src/microcode/gcloop.c @@ -542,8 +542,10 @@ DEFINE_GC_TRANSPORT_WORDS (gc_transport_words) } if (n_words == 0) std_gc_death ("gc_transport_words: attempt to transfer zero words."); +#if 0 if (n_words > 0x10000) outf_error_line ("\nWarning: copying large block: %lu", n_words); +#endif #endif new_address = newspace_next; while (from < from_end) -- 2.25.1