1# REQUIRES: x86
2# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
3# RUN: not ld.lld %t -o /dev/null
4# RUN: ld.lld %t --noinhibit-exec -o %t2
5# RUN: llvm-objdump -d %t2 | FileCheck %s
6# RUN: llvm-readobj -r %t2 | FileCheck %s --check-prefix=RELOC
7
8# CHECK: Disassembly of section .text:
9# CHECK-EMPTY:
10# CHECK-NEXT: _start
11# CHECK-NEXT: 201120: {{.*}} callq 0x0
12
13# RELOC:      Relocations [
14# RELOC-NEXT: ]
15
16# next code will not link without noinhibit-exec flag
17# because of undefined symbol _bar
18.globl _start
19_start:
20  call _bar
21