diff options
Diffstat (limited to 'gcc/expmed.c')
-rwxr-xr-x | gcc/expmed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/expmed.c b/gcc/expmed.c index 716a7e5..2cfcfa9 100755 --- a/gcc/expmed.c +++ b/gcc/expmed.c @@ -2289,9 +2289,9 @@ 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, + copy_memory ((char *) best_alg->op, (char *) alg_out->op, alg_out->ops * sizeof *alg_out->op); - bcopy ((char *) best_alg->log, (char *) alg_out->log, + copy_memory ((char *) best_alg->log, (char *) alg_out->log, alg_out->ops * sizeof *alg_out->log); } |