12345678910111213141516171819202122232425262728293031 |
- /*
- * This file is subject to the terms and conditions of the LGPL V2.1
- * License. See the file "COPYING" in the main directory of this archive
- * for more details.
- *
- * Copyright (C) 2018 Kalray Inc.
- */
- .section .init
- .align 8
- .global _init
- .type _init,@function
- _init:
- addd $sp = $sp, -32
- get $r15 = $ra
- ;;
- sq 0[$sp] = $r14r15
- copyd $fp = $sp
- ;;
- .section .fini
- .align 8
- .global _fini
- .type _fini,@function
- _fini:
- addd $sp = $sp, -32
- get $r15 = $ra
- ;;
- sq 0[$sp] = $r14r15
- copyd $fp = $sp
- ;;
|