Commit 56b89084 by Kaveh R. Ghazi Committed by Kaveh Ghazi

* toplev.c (set_float_handler): Use memcpy, not bcopy.

From-SVN: r40837
parent cb9b7a8c
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> 2001-03-25 Kazu Hirata <kazu@hxi.com>
* config/h8300/h8300.md (umodqi3): Output a tab instead of a * config/h8300/h8300.md (umodqi3): Output a tab instead of a
......
...@@ -1660,7 +1660,7 @@ set_float_handler (handler) ...@@ -1660,7 +1660,7 @@ set_float_handler (handler)
{ {
float_handled = (handler != 0); float_handled = (handler != 0);
if (handler) if (handler)
bcopy ((char *) handler, (char *) float_handler, sizeof (float_handler)); memcpy (float_handler, handler, sizeof (float_handler));
if (float_handled && ! float_handler_set) if (float_handled && ! float_handler_set)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment