diff options
author | YamaArashi <shadow962@live.com> | 2016-02-13 02:16:07 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-13 02:16:07 -0800 |
commit | 87926b4bcc3046ac85fabda09178e9bf50dd8381 (patch) | |
tree | 5b5ed9076e0200c36f979e0f8baaa23f4406cfd8 /gcc/genattr.c | |
parent | 56d3f75d136e839223544f0495cceb098afa1d55 (diff) |
remove use of strings.h
Diffstat (limited to 'gcc/genattr.c')
-rwxr-xr-x | gcc/genattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/genattr.c b/gcc/genattr.c index 1157389..7686492 100755 --- a/gcc/genattr.c +++ b/gcc/genattr.c @@ -361,7 +361,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); + copy_memory (name, unit->name, len); unit->multiplicity = multiplicity; unit->simultaneity = simultaneity; unit->ready_cost.min = unit->ready_cost.max = ready_cost; |