Skip to content

Instantly share code, notes, and snippets.

@Kern--
Created May 20, 2014 18:50
Show Gist options
  • Select an option

  • Save Kern--/c5e175159036b57ba569 to your computer and use it in GitHub Desktop.

Select an option

Save Kern--/c5e175159036b57ba569 to your computer and use it in GitHub Desktop.
static inline s32 lsbPosition(s32 a) {
s32 ret;
asm __volatile__("bitrev $0, %0;
clz %1, $0;"
: "=r"(ret) : "r"(a));
return ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment