mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 12:09:58 +00:00
target-s390x: Fix wrong comparison in interrupt handling
gcc with -Wextra complains about an ordered pointer comparison: target-s390x/helper.c:660:27: warning: ordered comparison of pointer with integer zero [-Wextra] Obviously the index was missing in the code. Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
0123c48636
commit
b22dd1243f
@ -657,7 +657,7 @@ static void do_io_interrupt(CPUS390XState *env)
|
|||||||
cpu_unmap_lowcore(lowcore);
|
cpu_unmap_lowcore(lowcore);
|
||||||
|
|
||||||
env->io_index[isc]--;
|
env->io_index[isc]--;
|
||||||
if (env->io_index >= 0) {
|
if (env->io_index[isc] >= 0) {
|
||||||
disable = 0;
|
disable = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user