Skip to content

Commit

Permalink
Add native softfloat fpu functions (Christoph Egger)
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5775 c046a42c-6fe2-441c-8c8c-71466251a162
  • Loading branch information
blueswir1 committed Nov 22, 2008
1 parent 47398b9 commit d07cca0
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions fpu/softfloat-native.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
#include <fenv.h>
#endif

#ifdef __OpenBSD__
/* Get OpenBSD version number */
#if defined(__OpenBSD__) || defined(__NetBSD__)
#include <sys/param.h>
#endif

Expand All @@ -35,6 +34,25 @@
#define unordered(x, y) (isnan(x) || isnan(y))
#endif

#ifdef __NetBSD__
#ifndef isgreater
#define isgreater(x, y) __builtin_isgreater(x, y)
#endif
#ifndef isgreaterequal
#define isgreaterequal(x, y) __builtin_isgreaterequal(x, y)
#endif
#ifndef isless
#define isless(x, y) __builtin_isless(x, y)
#endif
#ifndef islessequal
#define islessequal(x, y) __builtin_islessequal(x, y)
#endif
#ifndef isunordered
#define isunordered(x, y) __builtin_isunordered(x, y)
#endif
#endif


#define isnormal(x) (fpclass(x) >= FP_NZERO)
#define isgreater(x, y) ((!unordered(x, y)) && ((x) > (y)))
#define isgreaterequal(x, y) ((!unordered(x, y)) && ((x) >= (y)))
Expand Down

0 comments on commit d07cca0

Please sign in to comment.