fls.h 550 B

1234567891011121314151617181920212223242526
  1. /*
  2. * OpenRISC Linux
  3. *
  4. * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. */
  11. #ifndef __ASM_OPENRISC_FLS_H
  12. #define __ASM_OPENRISC_FLS_H
  13. static inline int fls(int x)
  14. {
  15. int ret;
  16. __asm__ ("l.fl1 %0,%1"
  17. : "=r" (ret)
  18. : "r" (x));
  19. return ret;
  20. }
  21. #endif /* __ASM_OPENRISC_FLS_H */