target-arm/arm-semi.c: In SYS_HEAPINFO use correct type for 'limit'
In commit f5666418c4
most of the SYS_HEAPINFO implementation was
fixed to use target_ulong rather than uint32_t, but the 'limit'
variable was not changed.
Reported-by: Laurent Desnogues <laurent.desnogues@gmail.com>
Reviewed-by: Laurent Desnogues <laurent.desnogues@gmail.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 1467650942-28706-1-git-send-email-peter.maydell@linaro.org
This commit is contained in:
parent
5563168c53
commit
90e26f5aac
@ -565,7 +565,7 @@ target_ulong do_arm_semihosting(CPUARMState *env)
|
|||||||
case TARGET_SYS_HEAPINFO:
|
case TARGET_SYS_HEAPINFO:
|
||||||
{
|
{
|
||||||
target_ulong retvals[4];
|
target_ulong retvals[4];
|
||||||
uint32_t limit;
|
target_ulong limit;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
GET_ARG(0);
|
GET_ARG(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user