summaryrefslogtreecommitdiff
path: root/src/unexec.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-09-23 18:37:12 +0000
committerRichard M. Stallman <rms@gnu.org>1994-09-23 18:37:12 +0000
commit3f254763f0b3a243b023c57e0663e8c4efc0d586 (patch)
treebd0fd0e9a817be6847e5549bbba63417e56f10bb /src/unexec.c
parent7e39868d560f459372df31a59a293a15a8b419e3 (diff)
downloademacs-3f254763f0b3a243b023c57e0663e8c4efc0d586.tar.gz
(copy_text_and_data): Delete some printf's.
Diffstat (limited to 'src/unexec.c')
-rw-r--r--src/unexec.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/unexec.c b/src/unexec.c
index 26e63fa55d8..d0ac5b4db2c 100644
--- a/src/unexec.c
+++ b/src/unexec.c
@@ -973,7 +973,6 @@ copy_text_and_data (new, a_out)
#endif
end = ptr + mcount_offset - EDATA_OFFSET;
- printf ("Writing from %08x to %08x\n", ptr, end);
write_segment (new, ptr, end);
@@ -982,14 +981,12 @@ copy_text_and_data (new, a_out)
proforma[2] = bss_end; /* becomes _minbrk */
proforma[3] = bss_end; /* becomes _curbrk */
- puts ("Writing 'args_proforma' (16 bytes)");
write (new, proforma, 16);
temp_ptr = ptr;
ptr = end + 16;
end = temp_ptr + hdr.a_text;
- printf ("Writing from %08x to %08x\n", ptr, end);
write_segment (new, ptr, end);
}