diff options
Diffstat (limited to 'core/fpu_ctrl.cpp')
-rw-r--r-- | core/fpu_ctrl.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/fpu_ctrl.cpp b/core/fpu_ctrl.cpp index 701f517d..435855ad 100644 --- a/core/fpu_ctrl.cpp +++ b/core/fpu_ctrl.cpp @@ -25,6 +25,7 @@ namespace { #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) [[gnu::target("sse")]] #endif +[[maybe_unused]] void disable_denormals(unsigned int *state [[maybe_unused]]) { #if defined(HAVE_SSE_INTRINSICS) @@ -52,6 +53,7 @@ void disable_denormals(unsigned int *state [[maybe_unused]]) #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) [[gnu::target("sse")]] #endif +[[maybe_unused]] void reset_fpu(unsigned int state [[maybe_unused]]) { #if defined(HAVE_SSE_INTRINSICS) || defined(HAVE_SSE) |