diff options
| author | Peter Maydell | 2011-09-26 17:56:55 +0200 |
|---|---|---|
| committer | Blue Swirl | 2011-10-01 08:19:07 +0200 |
| commit | 2ac8bd03c55422a7505ece2a0d39a396eb09c6e5 (patch) | |
| tree | e51ba73ed295621e6878409758d264668893f440 /fpu | |
| parent | tcg/arm: Remove unused tcg_out_addi() (diff) | |
| download | qemu-2ac8bd03c55422a7505ece2a0d39a396eb09c6e5.tar.gz qemu-2ac8bd03c55422a7505ece2a0d39a396eb09c6e5.tar.xz qemu-2ac8bd03c55422a7505ece2a0d39a396eb09c6e5.zip | |
softfloat: Reinstate accidentally disabled target-specific NaN handling
Include config.h in softfloat.c, so that the target specific ifdefs in
softfloat-specialize.h are evaluated correctly. This was accidentally
broken in commit 789ec7ce2 when config-target.h was removed from
softfloat.h, and means that most targets will have been returning the
wrong results for calculations involving NaNs.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'fpu')
| -rw-r--r-- | fpu/softfloat.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fpu/softfloat.c b/fpu/softfloat.c index 2b2008502c..3aafa81d58 100644 --- a/fpu/softfloat.c +++ b/fpu/softfloat.c @@ -35,6 +35,11 @@ these four paragraphs for those parts of this code that are retained. =============================================================================*/ +/* softfloat (and in particular the code in softfloat-specialize.h) is + * target-dependent and needs the TARGET_* macros. + */ +#include "config.h" + #include "softfloat.h" /*---------------------------------------------------------------------------- |
