5 #if defined(HAVE_SSE_INTRINSICS) || (defined(__GNUC__) && defined(HAVE_SSE))
6 unsigned int sse_state
{};
12 /* HACK: 32-bit targets for GCC seem to have a problem here with certain
13 * noexcept methods (which destructors are) causing an internal compiler
14 * error. No idea why it's these methods specifically, but this is needed
15 * to get it to compile.
17 ~FPUCtl() noexcept(false) { leave(); }
19 FPUCtl(const FPUCtl
&) = delete;
20 FPUCtl
& operator=(const FPUCtl
&) = delete;
25 #endif /* FPU_MODES_H */