summaryrefslogtreecommitdiff
path: root/test/MC/ELF
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-03-15 05:51:57 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-03-15 05:51:57 +0000
commit7a86ffb19fd9e74960690cb41caae390832d3b5a (patch)
treea7972a7c7319d37f690495fd38e14b868cab0b39 /test/MC/ELF
parent0cfb42adb5072fb19a01dba3ea58a33fd5927947 (diff)
downloadllvm-7a86ffb19fd9e74960690cb41caae390832d3b5a.tar.gz
llvm-7a86ffb19fd9e74960690cb41caae390832d3b5a.tar.bz2
llvm-7a86ffb19fd9e74960690cb41caae390832d3b5a.tar.xz
Fix the FDE encoding to be relative on ELF.
This is a very late complement to r130637 which fixed this on x86_64. Fixes pr15448. Since it looks like that every elf architecture uses this encoding when using cfi, make it the default for elf. Just exclude mips64el. It has a lovely .ll -> .o test (ef_frame.ll) that tests that nothing changes in the binary content of the .eh_frame produced by llc. Oblige it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177141 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/ELF')
-rw-r--r--test/MC/ELF/fde-reloc.s11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/MC/ELF/fde-reloc.s b/test/MC/ELF/fde-reloc.s
new file mode 100644
index 0000000000..63ac976621
--- /dev/null
+++ b/test/MC/ELF/fde-reloc.s
@@ -0,0 +1,11 @@
+// RUN: llvm-mc -filetype=obj %s -o - -triple x86_64-pc-linux | llvm-objdump -r - | FileCheck --check-prefix=X86-64 %s
+// RUN: llvm-mc -filetype=obj %s -o - -triple i686-pc-linux | llvm-objdump -r - | FileCheck --check-prefix=I686 %s
+
+// PR15448
+
+func:
+ .cfi_startproc
+ .cfi_endproc
+
+// X86-64: R_X86_64_PC32
+// I686: R_386_PC32