bsd-setjmp.S 347 B

1234567891011121314151617
  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. #include <sysdep.h>
  9. ENTRY(setjmp)
  10. /* Set second argument to 1 */
  11. make $r1 = 1
  12. ;;
  13. goto HIDDEN_JUMPTARGET(__sigsetjmp)
  14. ;;
  15. END(setjmp)