Commit 9b232232 by Richard Kenner

(reload): Cast args to bcopy to char *.

From-SVN: r8391
parent 4ba46f43
......@@ -1329,10 +1329,10 @@ reload (first, global, dumpfile)
need only in the smallest class in which it
is required. */
bcopy (insn_needs.other.regs[0], basic_needs,
sizeof basic_needs);
bcopy (insn_needs.other.groups, basic_groups,
sizeof basic_groups);
bcopy ((char *) insn_needs.other.regs[0],
(char *) basic_needs, sizeof basic_needs);
bcopy ((char *) insn_needs.other.groups,
(char *) basic_groups, sizeof basic_groups);
for (i = 0; i < N_REG_CLASSES; i++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment