1// REQUIRES: x86
2// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %S/Inputs/abs.s -o %tabs
3// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t
4// RUN: ld.lld %tabs %t -o %tout
5// RUN: llvm-objdump -d %tout | FileCheck %s
6
7.global _start
8_start:
9  movl $abs, %edx
10
11//CHECK:      <_start>:
12//CHECK-NEXT: movl	$66, %edx
13