Re: [PD] [PD-dev] denormals: svf, freeverb (was Re: bug in freeverb???)

2009-08-14 Thread Damon Chaplin
On Fri, 2009-08-14 at 04:07 -0700, Ed Kelly wrote: We have to sort this out! The denormals bug in freeverb~ _seems_ to have been fixed by following Julius' advice. I made a makefile with -fno-trapping-math as a flag and so far so good. I haven't had a problem with the freeverb~

Re: [PD] [PD-dev] denormals: svf, freeverb (was Re: bug in freeverb???)

2009-08-14 Thread Damon Chaplin
On Fri, 2009-08-14 at 13:06 +0100, Damon Chaplin wrote: On Fri, 2009-08-14 at 13:03 +0100, Damon Chaplin wrote: if (u.int_value 0x7f80) fv = 0.0f; Oops. That should be: if (u.int_value 0x7f80 == 0) fv = 0.0f; Or even better: if ((u.int_value 0x7f80