mirror of https://gitee.com/openkylin/qemu.git
target/arm: Early exit after unallocated_encoding in disas_fp_int_conv
No sense in emitting code after the exception. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Tested-by: Alex Bennée <alex.bennee@linaro.org> Message-id: 20180512003217.9105-3-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
68130236e3
commit
8c738d4307
|
@ -5780,7 +5780,7 @@ static void disas_fp_int_conv(DisasContext *s, uint32_t insn)
|
||||||
default:
|
default:
|
||||||
/* all other sf/type/rmode combinations are invalid */
|
/* all other sf/type/rmode combinations are invalid */
|
||||||
unallocated_encoding(s);
|
unallocated_encoding(s);
|
||||||
break;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!fp_access_check(s)) {
|
if (!fp_access_check(s)) {
|
||||||
|
|
Loading…
Reference in New Issue