repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
lld
/
test
/
MachO
/
Inputs
/
libhello.s
blob
0b9930bafcb1c3caaf9fd64ce67dfd126867a6fa
1
.section __TEXT,__cstring
2
.globl _hello_world, _hello_its_me, _print_hello
3
4
_hello_world
:
5
.asciz
"Hello world!
\n
"
6
7
_hello_its_me
:
8
.asciz
"Hello, it's me
\n
"
9
10
.text
11
_print_hello
:
12
movl $
0x2000004
, %
eax
# write() syscall
13
mov $
1
, %
rdi
# stdout
14
leaq _hello_world
(%
rip
), %
rsi
15
mov $
13
, %
rdx
# length of str
16
syscall
17
ret