X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Fconfig%2Fm68k%2Faux-crt2.asm;fp=gcc%2Fconfig%2Fm68k%2Faux-crt2.asm;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=c5a0b1c4d0c7305b57cecce950f5afd0f105618c;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/config/m68k/aux-crt2.asm b/gcc/config/m68k/aux-crt2.asm deleted file mode 100644 index c5a0b1c4..00000000 --- a/gcc/config/m68k/aux-crt2.asm +++ /dev/null @@ -1,42 +0,0 @@ -/* More startup code for A/UX */ - -#include "tconfig.h" - -#ifdef USE_BIN_AS - file "crt2.s" - -/* The init section is used to support shared libraries */ - init - global __istart - -__istart: - link %fp,&-4 -#else - .file "crt2.s" - -/* The init section is used to support shared libraries */ -.section .init, "x" -.even -.globl __istart - -__istart: - link %fp,#-4 - -#ifndef USE_COLLECT2 -/* The ctors and dtors sections are used to support COFF collection of - c++ constructors and destructors */ -.section .ctors, "d" -.even -.globl __CTOR_LIST__ - -__CTOR_LIST__: - .long -1 - -.section .dtors, "d" -.even -.globl __DTOR_LIST__ - -__DTOR_LIST__: - .long -1 -#endif /* USE_COLLECT2 */ -#endif /* USE_BIN_AS */