1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-22 10:27:48 +03:00
mold/test/mergeable-strings.s
2020-11-07 19:23:14 +09:00

29 lines
843 B
ArmAsm

// 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:
mov $.rodata.str1.1, %rdi
xor %rax, %rax
call printf
mov $.rodata.str1.1+9, %rdi
xor %rax, %rax
call printf
xor %rax, %rax
ret
.section .rodata.str1.1, "aMS", @progbits, 1
.L.str:
.string "Hello"
.string "foo world\n"