asri.c 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. /* PRU ABI compatibility functions
  2. Arithmetic right shift
  3. Copyright (C) 2017-2022 Free Software Foundation, Inc.
  4. Contributed by Dimitar Dimitrov <dimitar@dinux.eu>
  5. This file is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. In addition to the permissions in the GNU Lesser General Public
  10. License, the Free Software Foundation gives you unlimited
  11. permission to link the compiled version of this file into
  12. combinations with other programs, and to distribute those
  13. combinations without any restriction coming from the use of this
  14. file. (The Lesser General Public License restrictions do apply in
  15. other respects; for example, they cover modification of the file,
  16. and distribution when not linked into a combine executable.)
  17. This file is distributed in the hope that it will be useful,
  18. but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  20. Lesser General Public License for more details.
  21. You should have received a copy of the GNU Lesser General Public
  22. License along with GCC; see the file COPYING.LIB. If not see
  23. <http://www.gnu.org/licenses/>. */
  24. int __pruabi_asri(int a, unsigned char shift)
  25. {
  26. /* GCC has a built-in op. */
  27. return a >> shift;
  28. }