aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorPer Bothner <bothner@cygnus.com>1998-09-20 23:54:10 +0000
committerJeff Law <law@gcc.gnu.org>1998-09-20 17:54:10 -0600
commit7e2231e759e0cd8ea6e911791513b0a96c2e143f (patch)
tree6dbf4c903b58e66ef78b25007330334ab7fb3031 /gcc/c-common.c
parentc93b03c2d88093f850864506550044b47bf2ca29 (diff)
downloadgcc-7e2231e759e0cd8ea6e911791513b0a96c2e143f.zip
gcc-7e2231e759e0cd8ea6e911791513b0a96c2e143f.tar.gz
gcc-7e2231e759e0cd8ea6e911791513b0a96c2e143f.tar.bz2
Makefile.in (LIBS): Link in libiberty.a.
* Makefile.in (LIBS): Link in libiberty.a. * c-common.c, gcc.c, toplev.c: Repalce (some) bcopy calls by memcpy. From-SVN: r22508
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index 5879a85..a79d9d2 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -270,7 +270,7 @@ combine_strings (strings)
? wchar_bytes : 1));
if ((TREE_TYPE (t) == wchar_array_type_node) == wide_flag)
{
- bcopy (TREE_STRING_POINTER (t), q, len);
+ memcpy (q, TREE_STRING_POINTER (t), len);
q += len;
}
else