1# REQUIRES: x86 2 3# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o 4## Test that we only write to "-" once. 5# RUN: env LLD_IN_TEST=2 ld.lld %t.o -o - > %t1 6# RUN: llvm-objdump -d %t1 | FileCheck %s 7 8# CHECK: nop 9 10# RUN: ld.lld %t.o -o %t2 11# RUN: diff %t1 %t2 12 13.globl _start 14_start: 15 nop 16