Wed Feb 9 09:42:45 1994 Stan Shebs (shebs@andros.cygnus.com)
authorStan Shebs <shebs@codesourcery.com>
Wed, 9 Feb 1994 17:47:40 +0000 (17:47 +0000)
committerStan Shebs <shebs@codesourcery.com>
Wed, 9 Feb 1994 17:47:40 +0000 (17:47 +0000)
* config/obj-coffbfd.c (obj_coff_init_stab_section): Use memset
instead of memcpy to zero the initial stab symbol, duh.
* config/obj-elf.c (obj_elf_init_stab_section): Ditto.
* config/obj-som.c (obj_som_init_stab_section): Ditto.

gas/ChangeLog
gas/config/obj-coffbfd.c

index 4631b0df18dc7b97f3ba010bfdd2a5129b9485f5..cb885a6c7cf112719ec3be02a0f87e20c252f923 100644 (file)
@@ -1,3 +1,10 @@
+Wed Feb  9 09:42:45 1994  Stan Shebs  (shebs@andros.cygnus.com)
+
+       * config/obj-coffbfd.c (obj_coff_init_stab_section): Use memset
+       instead of memcpy to zero the initial stab symbol, duh.
+       * config/obj-elf.c (obj_elf_init_stab_section): Ditto.
+       * config/obj-som.c (obj_som_init_stab_section): Ditto.
+
 Tue Feb  8 17:25:44 1994  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
 
        * write.c (fixup_segment): Use as_bad_where, not as_bad.
index 2c4aa43632e4a478d29275f1a1c8ca08dd2caa35..c4053434a1f9c2dd35a5debdef8d05c84c8fdb10 100644 (file)
@@ -2661,7 +2661,7 @@ obj_coff_init_stab_section (seg)
   /* Make space for this first symbol. */
   p = frag_more (12);
   /* Zero it out. */
-  memcpy (p, 0, 12);
+  memset (p, 0, 12);
   as_where (&file, (unsigned int *) NULL);
   stabstr_name = alloca (strlen (segment_info[seg].scnhdr.s_name) + 4);
   strcpy (stabstr_name, segment_info[seg].scnhdr.s_name);