mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 17:43:57 +00:00
cf8396e4aa
It would have found a problem in a patch I am writing. llvm-svn: 296339
15 lines
304 B
ArmAsm
15 lines
304 B
ArmAsm
# 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
|