crtn.S 512 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * This file is subject to the terms and conditions of the LGPL V2.1
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2018 Kalray Inc.
  7. */
  8. .section .init
  9. .align 8
  10. .global _init
  11. .type _init,@function
  12. # EPILOGUE
  13. lq $r14r15 = 0[$sp]
  14. ;;
  15. set $ra = $r15
  16. addd $sp = $sp, 32
  17. ;;
  18. ret
  19. ;;
  20. .section .fini
  21. .align 8
  22. .global _fini
  23. .type _fini,@function
  24. # EPILOGUE
  25. lq $r14r15 = 0[$sp]
  26. ;;
  27. set $ra = $r15
  28. addd $sp = $sp, 32
  29. ;;
  30. ret
  31. ;;