[memprof] Remove an unused using directive (#117004)
[llvm-project.git] / lld / test / ELF / relocation-absolute.s
blob0be287a6d668ff6c9c985159b379a20828464bb6
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 --no-print-imm-hex -d %tout | FileCheck %s
7 .global _start
8 _start:
9 movl $abs, %edx
11 //CHECK: <_start>:
12 //CHECK-NEXT: movl $66, %edx