]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/multiprecision/config/has_float128.cpp
38a9fee28339b2041311a5ecd7ee8cc32b063ad2
[ceph.git] / ceph / src / boost / libs / multiprecision / config / has_float128.cpp
1 // Copyright John Maddock 2013.
2 // Use, modification and distribution are subject to the
3 // Boost Software License, Version 1.0. (See accompanying file
4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 extern "C" {
7 #include <quadmath.h>
8 }
9
10 int main()
11 {
12 __float128 f = -2.0Q;
13 f = fabsq(f);
14 f = expq(f);
15
16 return 0;
17 }
18