diff options
| author | Aurelien Jarno <aurelien@aurel32.net> | 2011-05-15 14:09:18 +0200 |
|---|---|---|
| committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-06-03 16:07:51 +0200 |
| commit | cf67c6bad56d43e6d60df22d6d43371813a6e2b8 (patch) | |
| tree | 55466d9ef51566e7a622e32362b313e240085955 /cpu-all.h | |
| parent | c31da136a0bf8caad70c348f5ffc283206e9c7fc (diff) | |
| download | focaccia-qemu-cf67c6bad56d43e6d60df22d6d43371813a6e2b8.tar.gz focaccia-qemu-cf67c6bad56d43e6d60df22d6d43371813a6e2b8.zip | |
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>
Diffstat (limited to 'cpu-all.h')
| -rw-r--r-- | cpu-all.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cpu-all.h b/cpu-all.h index 54df1d323c..fc252ba6e5 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -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 */ |