Andrei Alexandrescu Wrote:
> 
> a peephole optimization can detect isnan(a) || a < b and have it 
> translate into one instruction, same as a !>= b,

I think most people would use !(a>=b) rather than  isnan(a) || isnan(b) || a < b

Reply via email to