diff options
author | dim <dim@FreeBSD.org> | 2012-04-14 14:01:31 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-04-14 14:01:31 +0000 |
commit | 50b73317314e889cf39c7b1d6cbf419fa7502f22 (patch) | |
tree | be1815eb79b42ff482a8562b13c2dcbf0c5dcbee /lib/Headers/float.h | |
parent | dc04cb328508e61aad809d9b53b12f9799a00e7d (diff) | |
download | FreeBSD-src-50b73317314e889cf39c7b1d6cbf419fa7502f22.zip FreeBSD-src-50b73317314e889cf39c7b1d6cbf419fa7502f22.tar.gz |
Vendor import of clang trunk r154661:
http://llvm.org/svn/llvm-project/cfe/trunk@r154661
Diffstat (limited to 'lib/Headers/float.h')
-rw-r--r-- | lib/Headers/float.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/Headers/float.h b/lib/Headers/float.h index b7cb73a..65b517d 100644 --- a/lib/Headers/float.h +++ b/lib/Headers/float.h @@ -64,6 +64,11 @@ # undef FLT_MIN # undef DBL_MIN # undef LDBL_MIN +# if __STDC_VERSION__ >= 201112L || !defined(__STRICT_ANSI__) +# undef FLT_TRUE_MIN +# undef DBL_TRUE_MIN +# undef LDBL_TRUE_MIN +# endif #endif /* Characteristics of floating point types, C99 5.2.4.2.2 */ @@ -110,4 +115,10 @@ #define DBL_MIN __DBL_MIN__ #define LDBL_MIN __LDBL_MIN__ +#if __STDC_VERSION__ >= 201112L || !defined(__STRICT_ANSI__) +# define FLT_TRUE_MIN __FLT_DENORM_MIN__ +# define DBL_TRUE_MIN __DBL_DENORM_MIN__ +# define LDBL_TRUE_MIN __LDBL_DENORM_MIN__ +#endif + #endif /* __FLOAT_H */ |