diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-11-05 14:03:27 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-11-05 14:03:27 -0500 |
commit | 9b232232af2f7e1b71e21a843560d5cd605298cc (patch) | |
tree | 9dd4a4602dbf8b872867e589a3a0b12ccfb32222 /gcc | |
parent | 4ba46f43cb3535f7b2eb29694f899c021400fabf (diff) | |
download | gcc-9b232232af2f7e1b71e21a843560d5cd605298cc.zip gcc-9b232232af2f7e1b71e21a843560d5cd605298cc.tar.gz gcc-9b232232af2f7e1b71e21a843560d5cd605298cc.tar.bz2 |
(reload): Cast args to bcopy to char *.
From-SVN: r8391
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/reload1.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/reload1.c b/gcc/reload1.c index d6dadf2..49a1811 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -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++) { |