Floating point properties are a combination of target OS, target architecture and compiler support. - Adding target OS detection, - Moving floating point type detection to its own file. This is in preparation of adding support for `_Float16` which requires testing compiler **version** and target architecture.
6 lines
113 B
C++
6 lines
113 B
C++
#include "src/__support/macros/properties/float.h"
|
|
|
|
#ifndef LIBC_COMPILER_HAS_FLOAT128
|
|
#error unsupported
|
|
#endif
|