lm32: Replace call to write_memory with write_memory_unsigned_integer
authorSimon Marchi <simon.marchi@ericsson.com>
Tue, 13 Oct 2015 17:37:13 +0000 (13:37 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Tue, 13 Oct 2015 17:37:13 +0000 (13:37 -0400)
commit4666fec3b414c7880e9629f3c9b0a5b584235c6d
treed3f8c6c0868ef7bbaf4fc9e8b2fdbab8eec1be4d
parent3953f15ce4b4154e9fd7951424fedac0170ab59c
lm32: Replace call to write_memory with write_memory_unsigned_integer

Fixes this error:

/home/emaisin/src/binutils-gdb/gdb/lm32-tdep.c: In function ‘CORE_ADDR lm32_push_dummy_call(gdbarch*, value*, regcache*, CORE_ADDR, int, value**, CORE_ADDR, int, CORE_ADDR)’:
/home/emaisin/src/binutils-gdb/gdb/lm32-tdep.c:292:59: error: invalid conversion from ‘void*’ to ‘const gdb_byte* {aka const unsigned char*}’ [-fpermissive]
    write_memory (sp, (void *) &val, TYPE_LENGTH (arg_type));
                                                           ^
In file included from /home/emaisin/src/binutils-gdb/gdb/lm32-tdep.c:29:0:
/home/emaisin/src/binutils-gdb/gdb/gdbcore.h:107:13: error:   initializing argument 2 of ‘void write_memory(CORE_ADDR, const gdb_byte*, ssize_t)’ [-fpermissive]
 extern void write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr,
             ^

gdb/ChangeLog:

* lm32-tdep.c (lm32_push_dummy_call): Replace call to
write_memory with write_memory_unsigned_integer.
gdb/ChangeLog
gdb/lm32-tdep.c