diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2019-10-01 10:16:11 -0700 |
---|---|---|
committer | David Hildenbrand <david@redhat.com> | 2019-10-09 12:49:02 +0200 |
commit | 20e1372b7c18fdbeeb5f9da93d3d8637c1a1bd3d (patch) | |
tree | 5eb48dd78fea5d3ee6b60b3ed6acd6831404024b /target/s390x/excp_helper.c | |
parent | 2550953b20f609326e7bde2ee48d9852d5c21c94 (diff) | |
download | qemu-20e1372b7c18fdbeeb5f9da93d3d8637c1a1bd3d.zip qemu-20e1372b7c18fdbeeb5f9da93d3d8637c1a1bd3d.tar.gz qemu-20e1372b7c18fdbeeb5f9da93d3d8637c1a1bd3d.tar.bz2 |
target/s390x: Remove ILEN_AUTO
This setting is no longer used.
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20191001171614.8405-16-richard.henderson@linaro.org>
Signed-off-by: David Hildenbrand <david@redhat.com>
Diffstat (limited to 'target/s390x/excp_helper.c')
-rw-r--r-- | target/s390x/excp_helper.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/target/s390x/excp_helper.c b/target/s390x/excp_helper.c index 8ce992e..c252e9a 100644 --- a/target/s390x/excp_helper.c +++ b/target/s390x/excp_helper.c @@ -196,9 +196,6 @@ static void do_program_interrupt(CPUS390XState *env) LowCore *lowcore; int ilen = env->int_pgm_ilen; - if (ilen == ILEN_AUTO) { - ilen = get_ilen(cpu_ldub_code(env, env->psw.addr)); - } assert(ilen == 2 || ilen == 4 || ilen == 6); switch (env->int_pgm_code) { |