1
1
mirror of https://github.com/rui314/mold.git synced 2024-11-11 16:58:12 +03:00

temporary

This commit is contained in:
Rui Ueyama 2020-11-24 21:20:33 +09:00
parent 671aa31211
commit 5d390a214a

View File

@ -13,16 +13,17 @@
.text
.globl main
main:
mov $.rodata.str1.1, %rdi
mov $.L.str+3, %rdi
xor %rax, %rax
call printf
mov $.rodata.str1.1+9, %rdi
mov $.rodata.str1.1+16, %rdi
xor %rax, %rax
call printf
xor %rax, %rax
ret
.section .rodata.str1.1, "aMS", @progbits, 1
.string "bar"
.L.str:
.string "Hello"
.string "xyzHello"
.string "foo world\n"