diff options
Diffstat (limited to 'gcc/expmed.c')
-rw-r--r-- | gcc/expmed.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/expmed.c b/gcc/expmed.c index 012a68e8afa..af5d36d6de1 100644 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -2314,10 +2314,10 @@ synth_mult (alg_out, t, cost_limit) best_alg is normally undefined, and this is a critical function. */ alg_out->ops = best_alg->ops + 1; alg_out->cost = cost_limit; - bcopy ((char *) best_alg->op, (char *) alg_out->op, - alg_out->ops * sizeof *alg_out->op); - bcopy ((char *) best_alg->log, (char *) alg_out->log, - alg_out->ops * sizeof *alg_out->log); + memcpy (alg_out->op, best_alg->op, + alg_out->ops * sizeof *alg_out->op); + memcpy (alg_out->log, best_alg->log, + alg_out->ops * sizeof *alg_out->log); } /* Perform a multiplication and return an rtx for the result. |