Changeset 37677 in vbox
- Timestamp:
- Jun 29, 2011 7:59:07 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72537
- Location:
- trunk/src/recompiler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/Sun/config-host.h
r37675 r37677 23 23 # define HOST_I386 1 24 24 # define HOST_LONG_BITS 32 25 #endif 26 27 #ifndef IPRT_NO_CRT 25 28 # ifdef RT_OS_WINDOWS 26 29 # define CONFIG_WIN32 1 … … 34 37 # elif defined(RT_OS_SOLARIS) 35 38 # define CONFIG_SOLARIS 36 # el if !defined(IPRT_NO_CRT)39 # else 37 40 # define HAVE_BYTESWAP_H 1 38 41 # endif -
trunk/src/recompiler/fpu/softfloat-native.h
r37675 r37677 1 1 /* Native implementation of soft float functions */ 2 #define __C99FEATURES__ 2 3 #include <math.h> 3 4 4 #if (defined(_BSD) && !defined(__APPLE__) && !defined(__FreeBSD__)) || defined( HOST_SOLARIS) /* VBox: Added __FreeBSD__ */5 #if (defined(_BSD) && !defined(__APPLE__) && !defined(__FreeBSD__)) || defined(CONFIG_SOLARIS) /* VBox: Added __FreeBSD__ */ 5 6 #include <ieeefp.h> 6 7 #define fabsf(f) ((float)fabs(f)) … … 55 56 56 57 58 # if !defined(VBOX) || !defined(isnormal) || !defined(isgreater) || !defined(isgreaterequal) || !defined(isless) || !defined(islessequal) || !defined(isunordered) 57 59 #define isnormal(x) (fpclass(x) >= FP_NZERO) 58 60 #define isgreater(x, y) ((!unordered(x, y)) && ((x) > (y))) … … 61 63 #define islessequal(x, y) ((!unordered(x, y)) && ((x) <= (y))) 62 64 #define isunordered(x,y) unordered(x, y) 65 # endif /* !VBOX || missing */ 63 66 #endif 64 67
Note:
See TracChangeset
for help on using the changeset viewer.