mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 00:05:36 +00:00
header_gen: Add missing vfp_expand_imm entry to arm_symbols
Prevents multiple definition errors when building 32-bit ARM frontends.
This commit is contained in:
parent
f77b60d7e9
commit
9bf229ede1
|
@ -3421,4 +3421,5 @@
|
|||
#define uqadd_op uqadd_op_arm
|
||||
#define uqsub_op uqsub_op_arm
|
||||
#define usra_op usra_op_arm
|
||||
#define vfp_expand_imm vfp_expand_imm_arm
|
||||
#endif
|
||||
|
|
|
@ -3421,4 +3421,5 @@
|
|||
#define uqadd_op uqadd_op_armeb
|
||||
#define uqsub_op uqsub_op_armeb
|
||||
#define usra_op usra_op_armeb
|
||||
#define vfp_expand_imm vfp_expand_imm_armeb
|
||||
#endif
|
||||
|
|
|
@ -3430,6 +3430,7 @@ arm_symbols = (
|
|||
'uqadd_op',
|
||||
'uqsub_op',
|
||||
'usra_op',
|
||||
'vfp_expand_imm',
|
||||
)
|
||||
|
||||
aarch64_symbols = (
|
||||
|
|
Loading…
Reference in a new issue