mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
target/s390x: Remove ilen parameter from s390_program_interrupt
This is no longer used, and many of the existing uses -- particularly within hw/s390x -- seem questionable. Reviewed-by: David Hildenbrand <david@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20191001171614.8405-4-richard.henderson@linaro.org> Signed-off-by: David Hildenbrand <david@redhat.com>
This commit is contained in:
parent
3e20185892
commit
77b703f84f
12 changed files with 102 additions and 114 deletions
|
@ -34,8 +34,7 @@ void trigger_pgm_exception(CPUS390XState *env, uint32_t code, uint32_t ilen)
|
|||
}
|
||||
}
|
||||
|
||||
void s390_program_interrupt(CPUS390XState *env, uint32_t code, int ilen,
|
||||
uintptr_t ra)
|
||||
void s390_program_interrupt(CPUS390XState *env, uint32_t code, uintptr_t ra)
|
||||
{
|
||||
if (kvm_enabled()) {
|
||||
kvm_s390_program_interrupt(env_archcpu(env), code);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue