1# REQUIRES: x86
2# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
3# RUN: ld.lld %t.o -o /dev/null
4
5.global _start
6.global bar
7.symver _start, bar@@VERSION
8_start:
9  jmp bar
10