mirror of https://github.com/xemu-project/xemu.git
tcg/s390x: Fix tcg_out_dup_vec vs general registers
We copied the data from the general register input to the vector register output, but have not yet replicated it. We intended to fall through into the vector-vector case, but failed to redirect the input register. This is caught by an assertion failure in tcg_out_insn_VRIc, which diagnosed the incorrect register class. Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
6e5f9fb799
commit
6e591a8569
|
@ -2675,6 +2675,7 @@ static bool tcg_out_dup_vec(TCGContext *s, TCGType type, unsigned vece,
|
|||
if (vece == MO_64) {
|
||||
return true;
|
||||
}
|
||||
src = dst;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue