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) ...@@ -1329,10 +1329,10 @@ reload (first, global, dumpfile)
need only in the smallest class in which it need only in the smallest class in which it
is required. */ is required. */
bcopy (insn_needs.other.regs[0], basic_needs, bcopy ((char *) insn_needs.other.regs[0],
sizeof basic_needs); (char *) basic_needs, sizeof basic_needs);
bcopy (insn_needs.other.groups, basic_groups, bcopy ((char *) insn_needs.other.groups,
sizeof basic_groups); (char *) basic_groups, sizeof basic_groups);
for (i = 0; i < N_REG_CLASSES; i++) 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