瀏覽代碼

optim: better isnan() reimplementation.

legacy
Sam Hocevar sam 13 年之前
父節點
當前提交
3402db36c3
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      test/half.cpp

+ 1
- 1
test/half.cpp 查看文件

@@ -30,7 +30,7 @@
static inline int isnan(float f)
{
union { float f; uint32_t x; } u = { f };
return (~u.x << 1) < 0x00fffffeu;
return (u.x << 1) > 0xff000000u;
}
#endif



Loading…
取消
儲存