Mercurial > hg > CbC > CbC_llvm
annotate lld/test/ELF/icf8.s @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
rev | line source |
---|---|
150 | 1 # REQUIRES: x86 |
2 | |
3 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o | |
4 # RUN: ld.lld %t.o -o %t.so --icf=all -shared | |
5 # RUN: llvm-objdump -t %t.so | FileCheck %s | |
6 | |
7 # CHECK: zed | |
8 | |
9 .section .foo,"ax",@progbits | |
10 nop | |
11 | |
12 .section .bar,"ax",@progbits | |
13 zed: | |
14 nop |