aboutsummaryrefslogtreecommitdiff
path: root/test/ELF/mips-nonalloc.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/ELF/mips-nonalloc.s')
-rw-r--r--test/ELF/mips-nonalloc.s21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/ELF/mips-nonalloc.s b/test/ELF/mips-nonalloc.s
new file mode 100644
index 000000000000..7b0aa9469f9f
--- /dev/null
+++ b/test/ELF/mips-nonalloc.s
@@ -0,0 +1,21 @@
+# Check reading addends for relocations in non-allocatable sections.
+
+# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t1.o
+# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux \
+# RUN: %S/Inputs/mips-nonalloc.s -o %t2.o
+# RUN: ld.lld %t1.o %t2.o -o %t.exe
+# RUN: llvm-objdump -s %t.exe | FileCheck %s
+
+# REQUIRES: mips
+
+# CHECK: Contents of section .debug_info:
+# CHECK-NEXT: 0000 ffffffff 00020000 00020000
+# ^--------^-- __start
+
+ .global __start
+__start:
+ nop
+
+.section .debug_info
+ .word 0xffffffff
+ .word __start