diff --git a/ldb/gc.c b/ldb/gc.c
index 9b11c783009cd9b6ceb991f9c80445231aaa3684..ec7107b6e61e8846c5a34cd8b3a4758b5c8c3531 100644
--- a/ldb/gc.c
+++ b/ldb/gc.c
@@ -1,7 +1,7 @@
 /*
  * Stop and Copy GC based on Cheney's algorithm.
  *
- * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/gc.c,v 1.25 1991/02/16 01:00:04 wlott Exp $
+ * $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/ldb/Attic/gc.c,v 1.26 1991/03/23 14:45:15 wlott Exp $
  * 
  * Written by Christopher Hoover.
  */
@@ -264,14 +264,6 @@ collect_garbage()
 #endif
 	size_retained = (new_space_free_pointer - new_space) * sizeof(lispobj);
 
-	/* Flush the icache. */
-#ifdef PRINTNOISE
-	printf("Flushing instruction cache ...\n");
-#endif
-	os_flush_icache((os_vm_address_t) new_space,
-			(os_vm_size_t) size_retained);
-
-
 	/* Zero stack. */
 #ifdef PRINTNOISE
 	printf("Zeroing empty part of control stack ...\n");