Changeset 37675 in vbox for trunk/src/recompiler/fpu/softfloat.h
- Timestamp:
- Jun 29, 2011 7:07:14 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/fpu/softfloat.h
r36175 r37675 37 37 #endif 38 38 39 #if defined( HOST_SOLARIS) && defined(NEEDS_LIBSUNMATH)39 #if defined(CONFIG_SOLARIS) && defined(CONFIG_NEEDS_LIBSUNMATH) 40 40 #include <sunmath.h> 41 41 #endif … … 95 95 #else 96 96 /* native float support */ 97 #if (defined(__i386__) || defined(__x86_64__)) && (!defined( HOST_BSD) || defined(VBOX)) /** @todo VBOX: not correct on windows */97 #if (defined(__i386__) || defined(__x86_64__)) && (!defined(CONFIG_BSD) || defined(VBOX)) /** @todo VBOX: not correct on windows */ 98 98 #define FLOATX80 99 99 #endif … … 155 155 #ifdef FLOAT128 156 156 typedef struct { 157 #ifdef WORDS_BIGENDIAN157 #ifdef HOST_WORDS_BIGENDIAN 158 158 uint64_t high, low; 159 159 #else … … 250 250 float128 int64_to_float128( int64_t STATUS_PARAM ); 251 251 #endif 252 253 /*---------------------------------------------------------------------------- 254 | Software half-precision conversion routines. 255 *----------------------------------------------------------------------------*/ 256 bits16 float32_to_float16( float32, flag STATUS_PARAM ); 257 float32 float16_to_float32( bits16, flag STATUS_PARAM ); 252 258 253 259 /*----------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.