mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-04-01 23:07:03 +00:00
Resolve symbol errors with softfloat
This commit is contained in:
parent
c5730ff194
commit
18a229a69f
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_aarch64
|
||||
#define float128_to_int64 float128_to_int64_aarch64
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_aarch64
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_aarch64
|
||||
#define float128_to_uint64 float128_to_uint64_aarch64
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_aarch64
|
||||
#define float128_unordered float128_unordered_aarch64
|
||||
#define float128_unordered_quiet float128_unordered_quiet_aarch64
|
||||
#define float16ToCommonNaN float16ToCommonNaN_aarch64
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_aarch64eb
|
||||
#define float128_to_int64 float128_to_int64_aarch64eb
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_aarch64eb
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_aarch64eb
|
||||
#define float128_to_uint64 float128_to_uint64_aarch64eb
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_aarch64eb
|
||||
#define float128_unordered float128_unordered_aarch64eb
|
||||
#define float128_unordered_quiet float128_unordered_quiet_aarch64eb
|
||||
#define float16ToCommonNaN float16ToCommonNaN_aarch64eb
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_arm
|
||||
#define float128_to_int64 float128_to_int64_arm
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_arm
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_arm
|
||||
#define float128_to_uint64 float128_to_uint64_arm
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_arm
|
||||
#define float128_unordered float128_unordered_arm
|
||||
#define float128_unordered_quiet float128_unordered_quiet_arm
|
||||
#define float16ToCommonNaN float16ToCommonNaN_arm
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_armeb
|
||||
#define float128_to_int64 float128_to_int64_armeb
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_armeb
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_armeb
|
||||
#define float128_to_uint64 float128_to_uint64_armeb
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_armeb
|
||||
#define float128_unordered float128_unordered_armeb
|
||||
#define float128_unordered_quiet float128_unordered_quiet_armeb
|
||||
#define float16ToCommonNaN float16ToCommonNaN_armeb
|
||||
|
|
|
@ -485,6 +485,9 @@ symbols = (
|
|||
'float128_to_int32_round_to_zero',
|
||||
'float128_to_int64',
|
||||
'float128_to_int64_round_to_zero',
|
||||
'float128_to_uint32_round_to_zero',
|
||||
'float128_to_uint64',
|
||||
'float128_to_uint64_round_to_zero',
|
||||
'float128_unordered',
|
||||
'float128_unordered_quiet',
|
||||
'float16ToCommonNaN',
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_m68k
|
||||
#define float128_to_int64 float128_to_int64_m68k
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_m68k
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_m68k
|
||||
#define float128_to_uint64 float128_to_uint64_m68k
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_m68k
|
||||
#define float128_unordered float128_unordered_m68k
|
||||
#define float128_unordered_quiet float128_unordered_quiet_m68k
|
||||
#define float16ToCommonNaN float16ToCommonNaN_m68k
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_mips
|
||||
#define float128_to_int64 float128_to_int64_mips
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_mips
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_mips
|
||||
#define float128_to_uint64 float128_to_uint64_mips
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_mips
|
||||
#define float128_unordered float128_unordered_mips
|
||||
#define float128_unordered_quiet float128_unordered_quiet_mips
|
||||
#define float16ToCommonNaN float16ToCommonNaN_mips
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_mips64
|
||||
#define float128_to_int64 float128_to_int64_mips64
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_mips64
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_mips64
|
||||
#define float128_to_uint64 float128_to_uint64_mips64
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_mips64
|
||||
#define float128_unordered float128_unordered_mips64
|
||||
#define float128_unordered_quiet float128_unordered_quiet_mips64
|
||||
#define float16ToCommonNaN float16ToCommonNaN_mips64
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_mips64el
|
||||
#define float128_to_int64 float128_to_int64_mips64el
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_mips64el
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_mips64el
|
||||
#define float128_to_uint64 float128_to_uint64_mips64el
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_mips64el
|
||||
#define float128_unordered float128_unordered_mips64el
|
||||
#define float128_unordered_quiet float128_unordered_quiet_mips64el
|
||||
#define float16ToCommonNaN float16ToCommonNaN_mips64el
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_mipsel
|
||||
#define float128_to_int64 float128_to_int64_mipsel
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_mipsel
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_mipsel
|
||||
#define float128_to_uint64 float128_to_uint64_mipsel
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_mipsel
|
||||
#define float128_unordered float128_unordered_mipsel
|
||||
#define float128_unordered_quiet float128_unordered_quiet_mipsel
|
||||
#define float16ToCommonNaN float16ToCommonNaN_mipsel
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_powerpc
|
||||
#define float128_to_int64 float128_to_int64_powerpc
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_powerpc
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_powerpc
|
||||
#define float128_to_uint64 float128_to_uint64_powerpc
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_powerpc
|
||||
#define float128_unordered float128_unordered_powerpc
|
||||
#define float128_unordered_quiet float128_unordered_quiet_powerpc
|
||||
#define float16ToCommonNaN float16ToCommonNaN_powerpc
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_sparc
|
||||
#define float128_to_int64 float128_to_int64_sparc
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_sparc
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_sparc
|
||||
#define float128_to_uint64 float128_to_uint64_sparc
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_sparc
|
||||
#define float128_unordered float128_unordered_sparc
|
||||
#define float128_unordered_quiet float128_unordered_quiet_sparc
|
||||
#define float16ToCommonNaN float16ToCommonNaN_sparc
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_sparc64
|
||||
#define float128_to_int64 float128_to_int64_sparc64
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_sparc64
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_sparc64
|
||||
#define float128_to_uint64 float128_to_uint64_sparc64
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_sparc64
|
||||
#define float128_unordered float128_unordered_sparc64
|
||||
#define float128_unordered_quiet float128_unordered_quiet_sparc64
|
||||
#define float16ToCommonNaN float16ToCommonNaN_sparc64
|
||||
|
|
|
@ -479,6 +479,9 @@
|
|||
#define float128_to_int32_round_to_zero float128_to_int32_round_to_zero_x86_64
|
||||
#define float128_to_int64 float128_to_int64_x86_64
|
||||
#define float128_to_int64_round_to_zero float128_to_int64_round_to_zero_x86_64
|
||||
#define float128_to_uint32_round_to_zero float128_to_uint32_round_to_zero_x86_64
|
||||
#define float128_to_uint64 float128_to_uint64_x86_64
|
||||
#define float128_to_uint64_round_to_zero float128_to_uint64_round_to_zero_x86_64
|
||||
#define float128_unordered float128_unordered_x86_64
|
||||
#define float128_unordered_quiet float128_unordered_quiet_x86_64
|
||||
#define float16ToCommonNaN float16ToCommonNaN_x86_64
|
||||
|
|
Loading…
Reference in a new issue