has_intel_quad.cpp 332 B

1234567891011121314
  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. extern "C" _Quad __fabs(_Quad);
  6. int main()
  7. {
  8. _Quad f = -2.0Q;
  9. f = __fabsq(f);
  10. return 0;
  11. }