mirror of https://github.com/xemu-project/xemu.git
target/s390x: Fix CSST for 16-byte store
Found by Coverity (CID 1378273). Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reported-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
ca671de8af
commit
de4e05d1e5
|
@ -1580,6 +1580,7 @@ uint32_t HELPER(csst)(CPUS390XState *env, uint32_t r3, uint64_t a1, uint64_t a2)
|
||||||
cpu_stq_data_ra(env, a2 + 0, svh, ra);
|
cpu_stq_data_ra(env, a2 + 0, svh, ra);
|
||||||
cpu_stq_data_ra(env, a2 + 8, svl, ra);
|
cpu_stq_data_ra(env, a2 + 8, svl, ra);
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
g_assert_not_reached();
|
g_assert_not_reached();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue