mirror of
https://github.com/rui314/mold.git
synced 2024-12-26 01:44:29 +03:00
36 lines
1.1 KiB
ArmAsm
36 lines
1.1 KiB
ArmAsm
// RUN: cc -o %t.o -c %s
|
|
// RUN: mold -static --filler=0xfe -o %t1.exe \
|
|
// RUN: /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: mold -static --filler=0 -o %t2.exe \
|
|
// RUN: /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: diff %t1.exe %t2.exe
|
|
|
|
.text
|
|
.globl main
|
|
main:
|
|
lea msg(%rip), %rdi
|
|
xor %rax, %rax
|
|
call printf
|
|
xor %rax, %rax
|
|
ret
|
|
|
|
.data
|
|
msg:
|
|
.string "Hello world\n"
|