dust3d/thirdparty/cgal/CGAL-5.1/include/CGAL/FPU_extension.h

61 lines
1.4 KiB
C
Raw Normal View History

// Copyright (c) 2010-2011 GeometryFactory Sarl (France)
//
2020-10-13 12:44:25 +00:00
// This file is part of CGAL (www.cgal.org)
//
2020-10-13 12:44:25 +00:00
// $URL: https://github.com/CGAL/cgal/blob/v5.1/Number_types/include/CGAL/FPU_extension.h $
// $Id: FPU_extension.h 0779373 2020-03-26T13:31:46+01:00 Sébastien Loriot
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Laurent Rineau
// The main goal of FPU.h is to define functions or macros to modify the
// control word of the FPU, to:
// - set the precision to 53 bits of mantissa,
// - get/set the rounding mode.
2020-10-13 12:44:25 +00:00
//
// The goal of FPU_extension.h is to define inline functions similar to
// feclearexcept and fetestexcept of C99.
//
// For the moment, only i386 and x64 processors are supported, with MSVC,
// gcc, or the Intel compiler suite. Otherwise, the non-inline functions of
// C99 are used.
#ifndef CGAL_FPU_EXTENSION_H
#define CGAL_FPU_EXTENSION_H
#if __i386__ && !defined __PGI && !defined __SUNPRO_CC
# ifdef CGAL_SAFE_SSE2
# include <CGAL/FPU_gcc_i386_sse2.h>
# else
# include <CGAL/FPU_gcc_i386.h>
# endif
#elif defined _MSC_VER
# include <CGAL/FPU_msvc.h>
2020-10-13 12:44:25 +00:00
#else
// generic functions, using C99
extern "C" {
# include <fenv.h>
}
namespace CGAL {
inline int
feclearexcept(int exceptions) {
return ::feclearexcept(exceptions);
}
inline int
fetestexcept(int exceptions) {
return ::fetestexcept(exceptions);
}
} // end namespace CGAL
#endif // use fenv
#endif // CGAL_FPU_EXTENSION_H