aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/m68k/aux-crtn.asm
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/m68k/aux-crtn.asm')
-rw-r--r--gcc/config/m68k/aux-crtn.asm26
1 files changed, 0 insertions, 26 deletions
diff --git a/gcc/config/m68k/aux-crtn.asm b/gcc/config/m68k/aux-crtn.asm
deleted file mode 100644
index ce63d7fead7..00000000000
--- a/gcc/config/m68k/aux-crtn.asm
+++ /dev/null
@@ -1,26 +0,0 @@
-/* More startup code for A/UX */
-
-#include "tm.h"
-
-#ifdef USE_BIN_AS
- file "crtn.s"
-
- init
-
- unlk %fp
- rts
-#else
- .file "crtn.s"
-
-.section .init, "x"
- unlk %fp
- rts
-
-#ifndef USE_COLLECT2
-.section .ctors, "d"
- .long 0
-
-.section .dtors, "d"
- .long 0
-#endif /* USE_COLLECT2 */
-#endif /* USE_BIN_AS */