mirror of https://github.com/xemu-project/xemu.git
target/arm: Remove aa64_sve check from before disas_sve
We now have individual checks on all insns within disas_sve. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20220527181907.189259-115-richard.henderson@linaro.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
1402a6b88f
commit
b1071174d2
|
@ -14772,7 +14772,7 @@ static void aarch64_tr_translate_insn(DisasContextBase *dcbase, CPUState *cpu)
|
|||
unallocated_encoding(s);
|
||||
break;
|
||||
case 0x2:
|
||||
if (!dc_isar_feature(aa64_sve, s) || !disas_sve(s, insn)) {
|
||||
if (!disas_sve(s, insn)) {
|
||||
unallocated_encoding(s);
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue