1.globl crash1
2crash1:
3	movl $0xa5a50000, %eax
4	movl $0xa5a50001, %ebx
5	movl $0xa5a50002, %ecx
6
7	movl $0, %edx
8	jmp *%rdx
9
10
11.globl crashnostack
12crashnostack:
13	.cfi_startproc
14	movq %rsp, %rax
15	.cfi_def_cfa_register %rax
16	movq $0, %rsp
17	movq (%rsp), %rbx
18	.cfi_endproc
19