Fix the value of float_t to match what is implied by FLT_EVAL_METHOD.

This commit is contained in:
David Schultz 2012-01-16 20:17:51 +00:00
parent b3088c8315
commit cb659153f9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=230229
3 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ typedef unsigned long long __uint64_t;
typedef __uint32_t __clock_t; /* clock()... */
typedef __int32_t __critical_t;
typedef double __double_t;
typedef double __float_t;
typedef float __float_t;
typedef __int32_t __intfptr_t;
typedef __int64_t __intmax_t;
typedef __int32_t __intptr_t;

View File

@ -74,7 +74,7 @@ typedef unsigned long long __uint64_t;
*/
typedef __int32_t __clock_t; /* clock()... */
typedef double __double_t;
typedef double __float_t;
typedef float __float_t;
#ifdef __mips_n64
typedef __int64_t __critical_t;
typedef __int64_t __intfptr_t;

View File

@ -73,7 +73,7 @@ typedef unsigned long long __uint64_t;
*/
typedef __uint32_t __clock_t; /* clock()... */
typedef double __double_t;
typedef double __float_t;
typedef float __float_t;
#ifdef __LP64__
typedef __int64_t __critical_t;
typedef __int64_t __intfptr_t;