[memprof] Remove an unused using directive (#117004)
[llvm-project.git] / lld / test / ELF / icf-link-order.s
blob440971de0f03a08b6be8353418967bf53d0736a6
1 # REQUIRES: x86
3 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
4 # RUN: ld.lld %t.o -o %t --icf=all --print-icf-sections | count 0
6 .section .foo,"a",@progbits,unique,1
7 foo1:
8 .byte 1
10 .section .foo,"a",@progbits,unique,2
11 foo2:
12 .byte 2
14 .section .bar,"ao",@progbits,foo1,unique,1
15 .byte 3
17 .section .bar,"ao",@progbits,foo2,unique,2
18 .byte 3