Commit 8fa9acb8 authored by Victor Zverovich's avatar Victor Zverovich

Workaround broken __builtin_clz in clang with MS codegen (#519)

parent 3dae2582
...@@ -140,12 +140,16 @@ ...@@ -140,12 +140,16 @@
# endif # endif
#endif #endif
#if FMT_GCC_VERSION >= 400 || FMT_HAS_BUILTIN(__builtin_clz) // __builtin_clz is broken in clang with Microsoft CodeGen:
# define FMT_BUILTIN_CLZ(n) __builtin_clz(n) // https://github.com/fmtlib/fmt/issues/519
#endif #ifndef _MSC_VER
# if FMT_GCC_VERSION >= 400 || FMT_HAS_BUILTIN(__builtin_clz)
# define FMT_BUILTIN_CLZ(n) __builtin_clz(n)
# endif
#if FMT_GCC_VERSION >= 400 || FMT_HAS_BUILTIN(__builtin_clzll) # if FMT_GCC_VERSION >= 400 || FMT_HAS_BUILTIN(__builtin_clzll)
# define FMT_BUILTIN_CLZLL(n) __builtin_clzll(n) # define FMT_BUILTIN_CLZLL(n) __builtin_clzll(n)
# endif
#endif #endif
// Some compilers masquerade as both MSVC and GCC-likes or otherwise support // Some compilers masquerade as both MSVC and GCC-likes or otherwise support
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment