mirror of
https://github.com/rui314/mold.git
synced 2024-12-25 09:25:15 +03:00
9 lines
176 B
ArmAsm
9 lines
176 B
ArmAsm
// RUN: cc -o %t.o -c %s
|
|
// RUN: not mold -o %t.exe %t.o 2> %t.log
|
|
// RUN: grep 'undefined symbol: .*\.o: foo' %t.log
|
|
|
|
.text
|
|
.globl main
|
|
main:
|
|
call foo
|