mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-03-24 22:15:07 +00:00
target/arm: Remove ARM_FEATURE_VFP check from disas_vfp_insn
We now have proper ISA checks within each trans_* function. Backports commit 46c98019255b056f5dbc9676a6490951469ca661 from qemu
This commit is contained in:
parent
3f0ae7ccee
commit
7592564248
|
@ -2734,10 +2734,6 @@ static void gen_neon_dup_high16(DisasContext *s, TCGv_i32 var)
|
||||||
*/
|
*/
|
||||||
static int disas_vfp_insn(DisasContext *s, uint32_t insn)
|
static int disas_vfp_insn(DisasContext *s, uint32_t insn)
|
||||||
{
|
{
|
||||||
if (!arm_dc_feature(s, ARM_FEATURE_VFP)) {
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If the decodetree decoder handles this insn it will always
|
* If the decodetree decoder handles this insn it will always
|
||||||
* emit code to either execute the insn or generate an appropriate
|
* emit code to either execute the insn or generate an appropriate
|
||||||
|
|
Loading…
Reference in a new issue