15 lines · plain
1# REQUIRES: x862# UNSUPPORTED: system-windows3 4# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o5# RUN: ld.lld -r %t.o -o %t1.o6# RUN: [ ! -x %t1.o ]7# RUN: ld.lld -shared %t.o -o %t2.so8# RUN: [ -x %t2.so ]9# RUN: ld.lld %t.o -o %t310# RUN: [ -x %t3 ]11 12.global _start13_start:14 nop15