mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-02-25 11:46:58 +00:00
target/arm: Fix capitalization in NeonGenTwo{Single, Double}OPFn typedefs
All the other typedefs like these spell "Op" with a lowercase 'p'; remane the NeonGenTwoSingleOPFn and NeonGenTwoDoubleOPFn typedefs to match. Backports commit 5de3fd045be11b74cd0fbf36c6d4fb8387d5463b from qemu
This commit is contained in:
parent
fa6727ebba
commit
3c1289c594
|
@ -9811,7 +9811,7 @@ static void handle_2misc_fcmp_zero(DisasContext *s, int opcode,
|
|||
TCGv_i64 tcg_op = tcg_temp_new_i64(tcg_ctx);
|
||||
TCGv_i64 tcg_zero = tcg_const_i64(tcg_ctx, 0);
|
||||
TCGv_i64 tcg_res = tcg_temp_new_i64(tcg_ctx);
|
||||
NeonGenTwoDoubleOPFn *genfn;
|
||||
NeonGenTwoDoubleOpFn *genfn;
|
||||
bool swap = false;
|
||||
int pass;
|
||||
|
||||
|
@ -9853,7 +9853,7 @@ static void handle_2misc_fcmp_zero(DisasContext *s, int opcode,
|
|||
TCGv_i32 tcg_op = tcg_temp_new_i32(tcg_ctx);
|
||||
TCGv_i32 tcg_zero = tcg_const_i32(tcg_ctx, 0);
|
||||
TCGv_i32 tcg_res = tcg_temp_new_i32(tcg_ctx);
|
||||
NeonGenTwoSingleOPFn *genfn;
|
||||
NeonGenTwoSingleOpFn *genfn;
|
||||
bool swap = false;
|
||||
int pass, maxpasses;
|
||||
|
||||
|
|
|
@ -1686,7 +1686,7 @@ static bool trans_VSHLL_U_2sh(DisasContext *s, arg_2reg_shift *a)
|
|||
}
|
||||
|
||||
static bool do_fp_2sh(DisasContext *s, arg_2reg_shift *a,
|
||||
NeonGenTwoSingleOPFn *fn)
|
||||
NeonGenTwoSingleOpFn *fn)
|
||||
{
|
||||
/* FP operations in 2-reg-and-shift group */
|
||||
TCGContext *tcg_ctx = s->uc->tcg_ctx;
|
||||
|
|
|
@ -379,8 +379,8 @@ typedef void NeonGenNarrowFn(TCGContext *t, TCGv_i32, TCGv_i64);
|
|||
typedef void NeonGenNarrowEnvFn(TCGContext *t, TCGv_i32, TCGv_ptr, TCGv_i64);
|
||||
typedef void NeonGenWidenFn(TCGContext *t, TCGv_i64, TCGv_i32);
|
||||
typedef void NeonGenTwoOpWidenFn(TCGContext *t, TCGv_i64, TCGv_i32, TCGv_i32);
|
||||
typedef void NeonGenTwoSingleOPFn(TCGContext *t, TCGv_i32, TCGv_i32, TCGv_i32, TCGv_ptr);
|
||||
typedef void NeonGenTwoDoubleOPFn(TCGContext *t, TCGv_i64, TCGv_i64, TCGv_i64, TCGv_ptr);
|
||||
typedef void NeonGenTwoSingleOpFn(TCGContext *t, TCGv_i32, TCGv_i32, TCGv_i32, TCGv_ptr);
|
||||
typedef void NeonGenTwoDoubleOpFn(TCGContext *t, TCGv_i64, TCGv_i64, TCGv_i64, TCGv_ptr);
|
||||
typedef void NeonGenOne64OpFn(TCGContext *t, TCGv_i64, TCGv_i64);
|
||||
typedef void CryptoTwoOpFn(TCGContext *, TCGv_ptr, TCGv_ptr);
|
||||
typedef void CryptoThreeOpIntFn(TCGContext *, TCGv_ptr, TCGv_ptr, TCGv_i32);
|
||||
|
|
Loading…
Reference in a new issue