You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
361 B
14 lines
361 B
7 months ago
|
# REQUIRES: x86
|
||
|
# RUN: echo "SECTIONS { .foo : { *(.eh_frame) } }" > %t.script
|
||
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o
|
||
|
# RUN: ld.lld --emit-relocs %t.o -T %t.script -o %t
|
||
|
# RUN: llvm-objdump --section-headers %t | FileCheck %s
|
||
|
|
||
|
# CHECK-NOT: eh_frame
|
||
|
# CHECK: .rela.foo
|
||
|
# CHECK-NOT: eh_frame
|
||
|
|
||
|
.text
|
||
|
.cfi_startproc
|
||
|
.cfi_endproc
|