diff options
author | Pjotr Prins | 2018-09-06 11:59:03 +0000 |
---|---|---|
committer | Pjotr Prins | 2018-09-06 11:59:03 +0000 |
commit | cdf407bd7994dbe41a952bf29cacc1a2ca9c722e (patch) | |
tree | 1bd91f84684d556505ca930ecc73ceacbb1ce8ca /src/debug.cpp | |
parent | 6dd15bfabc5c655d18ea19c0d69b76ecc34630e2 (diff) | |
download | pangemma-cdf407bd7994dbe41a952bf29cacc1a2ca9c722e.tar.gz |
More debugging and a performance check
Diffstat (limited to 'src/debug.cpp')
-rw-r--r-- | src/debug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debug.cpp b/src/debug.cpp index 2f1f861..9f9f862 100644 --- a/src/debug.cpp +++ b/src/debug.cpp @@ -137,7 +137,7 @@ void enable_segfpe() { if (!is_fpe_check_mode() || is_legacy_mode()) return; #ifdef __GNUC__ #if defined(__x86_64__) - debug_msg("enable segfpe hardware floating point error detection"); + // debug_msg("enable segfpe hardware floating point error detection"); signal(SIGFPE, sighandler); feenableexcept(FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW); #endif @@ -148,7 +148,7 @@ void disable_segfpe() { if (!is_fpe_check_mode() || is_legacy_mode()) return; #ifdef __GNUC__ #if defined(__x86_64__) - debug_msg("disable segfpe"); + // debug_msg("disable segfpe"); fedisableexcept(FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW); #endif #endif |