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