mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-14 03:59:35 -04:00
FPE debug - Disable FE_UNDERFLOW
FE_UNDERFLOW gives a fair amount of hits with LMMS but is of lower importance than the other tests and slows down debugging considerably. Commenting out for the time being.
This commit is contained in:
@@ -252,10 +252,11 @@ int main( int argc, char * * argv )
|
||||
{
|
||||
#ifdef LMMS_DEBUG_FPE
|
||||
// Enable exceptions for certain floating point results
|
||||
// FE_UNDERFLOW is disabled for the time being
|
||||
feenableexcept( FE_INVALID |
|
||||
FE_DIVBYZERO |
|
||||
FE_OVERFLOW |
|
||||
FE_UNDERFLOW);
|
||||
FE_OVERFLOW /*|
|
||||
FE_UNDERFLOW*/);
|
||||
|
||||
// Install the trap handler
|
||||
// register signal SIGFPE and signal handler
|
||||
|
||||
Reference in New Issue
Block a user