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
327 B
14 lines
327 B
7 months ago
|
// REQUIRES: x86
|
||
|
// RUN: llvm-mc %s -o %t.o -filetype=obj -triple=x86_64-pc-linux
|
||
|
// RUN: ld.lld --eh-frame-hdr %t.o -o /dev/null -shared
|
||
|
// We would fail to parse multiple cies in the same file.
|
||
|
|
||
|
.cfi_startproc
|
||
|
.cfi_personality 0x9b, foo
|
||
|
.cfi_endproc
|
||
|
|
||
|
.cfi_startproc
|
||
|
.cfi_endproc
|
||
|
|
||
|
foo:
|