s390x/tcg: specification exception for unknown diag

While the PoP is silent on the issue, z/VM documentation states
that unknown diagnose codes trigger a specification exception.
We already do that when running with kvm, so change tcg to do so
as well.

Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
This commit is contained in:
Cornelia Huck 2017-08-18 12:55:13 +02:00
parent ea5bef49ea
commit a8aec856b8
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ void HELPER(diag)(CPUS390XState *env, uint32_t r1, uint32_t r3, uint32_t num)
}
if (r) {
program_interrupt(env, PGM_OPERATION, ILEN_AUTO);
program_interrupt(env, PGM_SPECIFICATION, ILEN_AUTO);
}
}