summaryrefslogtreecommitdiff
path: root/gcc/config/m68k/aux-crtn.asm
blob: b7948101ef9b95a1921d2cf753d7991f868df43d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* More startup code for A/UX */

#include "tconfig.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 */