forked from OSchip/llvm-project
Add a test we already get right.
It would have found a problem in a patch I am writing. llvm-svn: 296339
This commit is contained in:
parent
749c557d81
commit
cf8396e4aa
|
@ -0,0 +1,14 @@
|
|||
# REQUIRES: x86
|
||||
|
||||
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
|
||||
# RUN: ld.lld %t.o -o %t.so --icf=all -shared
|
||||
# RUN: llvm-objdump -t %t.so | FileCheck %s
|
||||
|
||||
# CHECK: zed
|
||||
|
||||
.section .foo,"ax",@progbits
|
||||
nop
|
||||
|
||||
.section .bar,"ax",@progbits
|
||||
zed:
|
||||
nop
|
Loading…
Reference in New Issue