* toplev.c (set_float_handler): Use memcpy, not bcopy.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Mon, 26 Mar 2001 02:36:39 +0000 (02:36 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Mon, 26 Mar 2001 02:36:39 +0000 (02:36 +0000)
From-SVN: r40837

gcc/ChangeLog
gcc/toplev.c

index c484664c26527eada42a091fc0d85b1b311f3111..55ef8ed99f00f3485da91232c43e89b065860eed 100644 (file)
@@ -1,3 +1,7 @@
+2001-03-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * toplev.c (set_float_handler): Use memcpy, not bcopy.
+
 2001-03-25  Kazu Hirata  <kazu@hxi.com>
 
        * config/h8300/h8300.md (umodqi3): Output a tab instead of a
index 7a9569722ad5928fe6a8ce475b272cb324e271c9..b0da7be7c081cf4c9c44346ffec3a774d3bc7120 100644 (file)
@@ -1660,7 +1660,7 @@ set_float_handler (handler)
 {
   float_handled = (handler != 0);
   if (handler)
-    bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler));
+    memcpy (float_handler, handler, sizeof (float_handler));
 
   if (float_handled && ! float_handler_set)
     {