Skip to content

Commit

Permalink
Fix arm32 C file
Browse files Browse the repository at this point in the history
  • Loading branch information
dlesbre committed Jun 1, 2024
1 parent 004a628 commit b9b6c64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions int_builtins.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static inline uintnat clz(uintnat v){
#ifdef ARCH_SIXTYFOUR
return __builtin_clzll(v);
#else
return __builtin_clz(v)
return __builtin_clz(v);
#endif
#endif
#ifdef _MSC_VER
Expand All @@ -48,7 +48,7 @@ static inline uintnat clz(uintnat v){
_BitScanReverse(&res,v);
#endif
return res;
#endif
#endif
}

/**************** Highest bit ****************/
Expand Down

0 comments on commit b9b6c64

Please sign in to comment.