OSDN Git Service

* config/xtensa/xtensa.c (xtensa_va_arg): Fix to handle arguments
[pf3gnuchains/gcc-fork.git] / gcc / config / m68k / aux-crtn.asm
1 /* More startup code for A/UX */
2
3 #include "tconfig.h"
4
5 #ifdef USE_BIN_AS
6         file    "crtn.s"
7
8         init
9
10         unlk %fp
11         rts
12 #else
13         .file "crtn.s"
14
15 .section .init, "x"
16         unlk %fp
17         rts
18
19 #ifndef USE_COLLECT2
20 .section .ctors, "d"
21         .long 0
22
23 .section .dtors, "d"
24         .long 0
25 #endif /* USE_COLLECT2 */
26 #endif /* USE_BIN_AS */