diff options
Diffstat (limited to 'test/ELF/eh-frame-gc2.s')
-rw-r--r-- | test/ELF/eh-frame-gc2.s | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/ELF/eh-frame-gc2.s b/test/ELF/eh-frame-gc2.s new file mode 100644 index 0000000000000..9cf0d0832d5b6 --- /dev/null +++ b/test/ELF/eh-frame-gc2.s @@ -0,0 +1,15 @@ +// REQUIRES: x86 +// RUN: llvm-mc -filetype=obj -triple=i686-pc-linux %s -o %t.o +// RUN: ld.lld --gc-sections %t.o -o %t +// RUN: llvm-readobj -s %t | FileCheck %s + +// Test that the we don't gc the personality function. +// CHECK: Name: .foobar + + .globl _start +_start: + .cfi_startproc + .cfi_personality 3, foobar + .cfi_endproc + .section .foobar,"ax" +foobar: |