OSDN Git Service

* config/xtensa/xtensa.c (xtensa_va_arg): Fix to handle arguments
[pf3gnuchains/gcc-fork.git] / gcc / config / m68k / aux-crt2.asm
1 /* More startup code for A/UX */
2
3 #include "tconfig.h"
4
5 #ifdef USE_BIN_AS
6         file "crt2.s"
7
8 /* The init section is used to support shared libraries */
9         init
10         global  __istart
11
12 __istart:
13         link %fp,&-4
14 #else
15         .file "crt2.s"
16
17 /* The init section is used to support shared libraries */
18 .section .init, "x"
19 .even
20 .globl __istart
21
22 __istart:
23         link %fp,#-4
24
25 #ifndef USE_COLLECT2
26 /* The ctors and dtors sections are used to support COFF collection of 
27    c++ constructors and destructors */
28 .section .ctors, "d"
29 .even
30 .globl __CTOR_LIST__
31
32 __CTOR_LIST__:
33         .long -1
34
35 .section .dtors, "d"
36 .even
37 .globl __DTOR_LIST__
38
39 __DTOR_LIST__:
40         .long -1
41 #endif /* USE_COLLECT2 */
42 #endif /* USE_BIN_AS */