diff options
| author | David Hildenbrand <david@redhat.com> | 2017-11-30 17:27:41 +0100 |
|---|---|---|
| committer | Cornelia Huck <cohuck@redhat.com> | 2017-12-14 17:56:54 +0100 |
| commit | 005a0491846db216ef9d3b31f8567fd5527aa0c5 (patch) | |
| tree | 50e5646dde05ab959a3c9579c680b4c0d74632f2 | |
| parent | 8808338200fe3bb2b475fa7b6492b34c1d32fdd2 (diff) | |
| download | focaccia-qemu-005a0491846db216ef9d3b31f8567fd5527aa0c5.tar.gz focaccia-qemu-005a0491846db216ef9d3b31f8567fd5527aa0c5.zip | |
s390x/tcg: use s390_program_interrupt() in SACF
Convert this user, too. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: David Hildenbrand <david@redhat.com> Message-Id: <20171130162744.25442-14-david@redhat.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
| -rw-r--r-- | target/s390x/cc_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/s390x/cc_helper.c b/target/s390x/cc_helper.c index f008897e84..5d91e458a8 100644 --- a/target/s390x/cc_helper.c +++ b/target/s390x/cc_helper.c @@ -564,7 +564,7 @@ void HELPER(sacf)(CPUS390XState *env, uint64_t a1) break; default: HELPER_LOG("unknown sacf mode: %" PRIx64 "\n", a1); - program_interrupt(env, PGM_SPECIFICATION, 2); + s390_program_interrupt(env, PGM_SPECIFICATION, 2, GETPC()); break; } } |