[memprof] Remove an unused using directive (#117004)
[llvm-project.git] / lld / test / ELF / oformat-binary-ttext.s
blob240f1f2f32441ccda7dcbf44401d0e6a97b49ceb
1 # REQUIRES: x86
2 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
4 # RUN: ld.lld -N -Ttext 0x100 -o %t.out %t --oformat binary
5 # RUN: od -t x1 -v %t.out | FileCheck %s --check-prefix=BIN
7 # BIN: 0000000 90
8 # BIN-NEXT: 0000001
10 ## The same but without OMAGIC.
11 # RUN: ld.lld -Ttext 0x100 -o %t.out %t --oformat binary
12 # RUN: od -t x1 -v %t.out | FileCheck %s --check-prefix=BIN
14 .text
15 .globl _start
16 _start:
17 nop