aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-09-23 18:37:12 +0000
committerRichard M. Stallman1994-09-23 18:37:12 +0000
commit3f254763f0b3a243b023c57e0663e8c4efc0d586 (patch)
treebd0fd0e9a817be6847e5549bbba63417e56f10bb /src
parent7e39868d560f459372df31a59a293a15a8b419e3 (diff)
downloademacs-3f254763f0b3a243b023c57e0663e8c4efc0d586.tar.gz
emacs-3f254763f0b3a243b023c57e0663e8c4efc0d586.zip
(copy_text_and_data): Delete some printf's.
Diffstat (limited to 'src')
-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)
973#endif 973#endif
974 974
975 end = ptr + mcount_offset - EDATA_OFFSET; 975 end = ptr + mcount_offset - EDATA_OFFSET;
976 printf ("Writing from %08x to %08x\n", ptr, end);
977 976
978 write_segment (new, ptr, end); 977 write_segment (new, ptr, end);
979 978
@@ -982,14 +981,12 @@ copy_text_and_data (new, a_out)
982 proforma[2] = bss_end; /* becomes _minbrk */ 981 proforma[2] = bss_end; /* becomes _minbrk */
983 proforma[3] = bss_end; /* becomes _curbrk */ 982 proforma[3] = bss_end; /* becomes _curbrk */
984 983
985 puts ("Writing 'args_proforma' (16 bytes)");
986 write (new, proforma, 16); 984 write (new, proforma, 16);
987 985
988 temp_ptr = ptr; 986 temp_ptr = ptr;
989 ptr = end + 16; 987 ptr = end + 16;
990 end = temp_ptr + hdr.a_text; 988 end = temp_ptr + hdr.a_text;
991 989
992 printf ("Writing from %08x to %08x\n", ptr, end);
993 write_segment (new, ptr, end); 990 write_segment (new, ptr, end);
994 } 991 }
995 992