summaryrefslogtreecommitdiffstats
path: root/target/s390x/interrupt.c
diff options
context:
space:
mode:
authorRichard Henderson2019-10-01 19:15:58 +0200
committerDavid Hildenbrand2019-10-09 12:49:01 +0200
commit3e2018589244b1af8f046ebe387670aecd4156c2 (patch)
tree565949c9c160a0012cc7f579520aaebefeb5da3c /target/s390x/interrupt.c
parenttarget/s390x: Add ilen to unwind data (diff)
downloadqemu-3e2018589244b1af8f046ebe387670aecd4156c2.tar.gz
qemu-3e2018589244b1af8f046ebe387670aecd4156c2.tar.xz
qemu-3e2018589244b1af8f046ebe387670aecd4156c2.zip
target/s390x: Remove ilen parameter from tcg_s390_program_interrupt
Since we begin the operation with an unwind, we have the proper value of ilen immediately available. Reviewed-by: David Hildenbrand <david@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20191001171614.8405-3-richard.henderson@linaro.org> Signed-off-by: David Hildenbrand <david@redhat.com>
Diffstat (limited to 'target/s390x/interrupt.c')
-rw-r--r--target/s390x/interrupt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/s390x/interrupt.c b/target/s390x/interrupt.c
index 30a9fb8852..b798e2ecbe 100644
--- a/target/s390x/interrupt.c
+++ b/target/s390x/interrupt.c
@@ -40,7 +40,7 @@ void s390_program_interrupt(CPUS390XState *env, uint32_t code, int ilen,
if (kvm_enabled()) {
kvm_s390_program_interrupt(env_archcpu(env), code);
} else if (tcg_enabled()) {
- tcg_s390_program_interrupt(env, code, ilen, ra);
+ tcg_s390_program_interrupt(env, code, ra);
} else {
g_assert_not_reached();
}