MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / ctz64

Function ctz64

tests/Issue681.cpp:22–25  ·  view source on GitHub ↗

WARNING: undefined if a = 0 */

Source from the content-addressed store, hash-verified

20
21/* WARNING: undefined if a = 0 */
22static inline int ctz64(uint64_t a)
23{
24 return __builtin_ctzll(a);
25}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected