1	.text
2	.weak __start_my_section
3	.weak __stop_my_section
4	.globl	_start
5	.type	_start, @function
6_start:
7	movl	_DYNAMIC@GOT(%ecx), %eax
8	movl	__start_my_section@GOT(%ecx), %eax
9	movl	__stop_my_section@GOT(%ecx), %eax
10	.size	_start, .-_start
11