mirror of
https://github.com/GaloisInc/macaw.git
synced 2024-12-18 11:31:35 +03:00
32 lines
492 B
ArmAsm
32 lines
492 B
ArmAsm
.file "foo.c"
|
|
.machine power7
|
|
.section ".toc","aw"
|
|
.section ".text"
|
|
.align 2
|
|
.globl _start
|
|
.section ".opd","aw"
|
|
.align 3
|
|
_start:
|
|
.quad .L._start,.TOC.@tocbase,0
|
|
.previous
|
|
.type _start, @function
|
|
.L._start:
|
|
std 31,-8(1)
|
|
stdu 1,-64(1)
|
|
mr 31,1
|
|
#APP
|
|
# 4 "foo.c" 1
|
|
movq $60,%rax
|
|
movq $0,%rdi
|
|
syscall
|
|
# 0 "" 2
|
|
#NO_APP
|
|
nop
|
|
addi 1,31,64
|
|
ld 31,-8(1)
|
|
blr
|
|
.long 0
|
|
.byte 0,0,0,0,128,1,0,1
|
|
.size _start,.-.L._start
|
|
.ident "GCC: (Ubuntu/IBM 5.4.0-6ubuntu1~16.04.1) 5.4.0 20160609"
|