mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
softfloat-native: remove
Remove softfloat-native support, all targets are now using softfloat instead. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
c31da136a0
commit
cf67c6bad5
6 changed files with 2 additions and 1093 deletions
|
@ -123,8 +123,7 @@ typedef union {
|
|||
endian ! */
|
||||
typedef union {
|
||||
float64 d;
|
||||
#if defined(HOST_WORDS_BIGENDIAN) \
|
||||
|| (defined(__arm__) && !defined(__VFP_FP__) && !defined(CONFIG_SOFTFLOAT))
|
||||
#if defined(HOST_WORDS_BIGENDIAN)
|
||||
struct {
|
||||
uint32_t upper;
|
||||
uint32_t lower;
|
||||
|
@ -148,7 +147,6 @@ typedef union {
|
|||
} CPU_LDoubleU;
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_SOFTFLOAT)
|
||||
typedef union {
|
||||
float128 q;
|
||||
#if defined(HOST_WORDS_BIGENDIAN)
|
||||
|
@ -175,7 +173,6 @@ typedef union {
|
|||
} ll;
|
||||
#endif
|
||||
} CPU_QuadU;
|
||||
#endif
|
||||
|
||||
/* CPU memory access without any memory or io remapping */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue