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