summaryrefslogtreecommitdiffstats
path: root/target/s390x/cc_helper.c
diff options
context:
space:
mode:
authorRichard Henderson2019-10-01 19:15:59 +0200
committerDavid Hildenbrand2019-10-09 12:49:01 +0200
commit77b703f84f0099c2e863a05122537a252ca005d1 (patch)
tree93323ade536f2f663806ee52b64bbc8dd9bf68b1 /target/s390x/cc_helper.c
parenttarget/s390x: Remove ilen parameter from tcg_s390_program_interrupt (diff)
downloadqemu-77b703f84f0099c2e863a05122537a252ca005d1.tar.gz
qemu-77b703f84f0099c2e863a05122537a252ca005d1.tar.xz
qemu-77b703f84f0099c2e863a05122537a252ca005d1.zip
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>
Diffstat (limited to 'target/s390x/cc_helper.c')
-rw-r--r--target/s390x/cc_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/s390x/cc_helper.c b/target/s390x/cc_helper.c
index cf68792733..3cb00bcb09 100644
--- a/target/s390x/cc_helper.c
+++ b/target/s390x/cc_helper.c
@@ -588,7 +588,7 @@ void HELPER(sacf)(CPUS390XState *env, uint64_t a1)
break;
default:
HELPER_LOG("unknown sacf mode: %" PRIx64 "\n", a1);
- s390_program_interrupt(env, PGM_SPECIFICATION, 2, GETPC());
+ s390_program_interrupt(env, PGM_SPECIFICATION, GETPC());
break;
}
}