From 4e135bdd14d2035632e78008730027c4ef82aa7a Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Fri, 10 Nov 2000 16:01:28 +0000 Subject: alpha.c (check_float_value): Use memcpy, not bcopy. * alpha.c (check_float_value): Use memcpy, not bcopy. * arm.c (output_move_double): Likewise. * arm.md: Likewise. * m88k.c (legitimize_operand): Likewise. * m88k.h (ORDER_REGS_FOR_LOCAL_ALLOC): Likewise. * m88k.md: Likewise. * mips.c (override_options): Likewise. * mips.md: Likewise. * romp.c (output_fpops): Likewise. * rs6000.c (rs6000_override_options): Likewise. * sh.md: Likewise. * vax.c (check_float_value): Likewise. * emit-rtl.c (copy_rtx_if_shared, init_emit_once): Likewise. * expmed.c (synth_mult): Likewise. * final.c (add_bb_string): Likewise. * genattr.c (main): Likewise. * genattrtab.c (attr_string, simplify_cond, copy_rtx_unchanging): Likewise. * jump.c (thread_jumps): Likewise. * prefix.c (save_string): Likewise. * real.h (REAL_VALUE_FROM_CONST_DOUBLE): Likewise. * regclass.c (init_reg_sets, init_reg_sets_1): Likewise. * reload1.c (reload, eliminate_regs): Likewise. cp: * decl.c (grokdeclarator, save_function_data): Use memcpy, not bcopy. * lex.c (copy_lang_decl): Likewise. java: * decl.c (copy_lang_decl): Use memcpy, not bcopy. * jcf-parse.c (jcf_figure_file_type): Likewise. From-SVN: r37367 --- gcc/genattr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/genattr.c') diff --git a/gcc/genattr.c b/gcc/genattr.c index 770379a53d5..27123d87871 100644 --- a/gcc/genattr.c +++ b/gcc/genattr.c @@ -283,7 +283,7 @@ from the machine description file `md'. */\n\n"); unit = (struct function_unit *) alloca (sizeof (struct function_unit)); unit->name = (char *) alloca (len); - bcopy (name, unit->name, len); + memcpy (unit->name, name, len); unit->multiplicity = multiplicity; unit->simultaneity = simultaneity; unit->ready_cost.min = unit->ready_cost.max = ready_cost; -- cgit v1.2.1