1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-22 10:27:48 +03:00

temporary

This commit is contained in:
Rui Ueyama 2020-11-07 18:18:13 +09:00
parent b2b4f16350
commit d29b17cf0a

27
test/mergeable-strings.s Normal file
View File

@ -0,0 +1,27 @@
// RUN: cc -o %t.o -c %s
// RUN: mold -static -o %t.exe /usr/lib/x86_64-linux-gnu/crt1.o \
// RUN: /usr/lib/x86_64-linux-gnu/crti.o \
// RUN: /usr/lib/gcc/x86_64-linux-gnu/9/crtbeginT.o \
// RUN: %t.o \
// RUN: /usr/lib/gcc/x86_64-linux-gnu/9/libgcc.a \
// RUN: /usr/lib/gcc/x86_64-linux-gnu/9/libgcc_eh.a \
// RUN: /usr/lib/x86_64-linux-gnu/libc.a \
// RUN: /usr/lib/gcc/x86_64-linux-gnu/9/crtend.o \
// RUN: /usr/lib/x86_64-linux-gnu/crtn.o
// RUN: %t.exe | grep 'Hello world'
.text
.globl main
main:
lea .rodata.str1.1(%rip), %rdi
xor %rax, %rax
call printf
lea .rodata.str1.1+9(%rip), %rdi
xor %rax, %rax
call printf
xor %rax, %rax
ret
.section .rodata.str1.1, "aMS", @progbits, 1
.string "Hello"
.string "foo world\n"