summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2012-03-20 17:25:45 +0000
committerJim Grosbach <grosbach@apple.com>2012-03-20 17:25:45 +0000
commit07cdd80ccc1a07edc565199c62d35ea0d80c6c1c (patch)
treee0d7bbbc99240cacac173b5bcf558bedae629ec1 /test
parent1fc999ec471184127a0807da43529fda63c84cef (diff)
downloadllvm-07cdd80ccc1a07edc565199c62d35ea0d80c6c1c.tar.gz
llvm-07cdd80ccc1a07edc565199c62d35ea0d80c6c1c.tar.bz2
llvm-07cdd80ccc1a07edc565199c62d35ea0d80c6c1c.tar.xz
ARM non-scattered MachO relocations for movw/movt.
Needed when building -mdynamic-no-pic code. rdar://10459256 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/MC/MachO/ARM/static-movt-relocs.s23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/MC/MachO/ARM/static-movt-relocs.s b/test/MC/MachO/ARM/static-movt-relocs.s
new file mode 100644
index 0000000000..dce5683292
--- /dev/null
+++ b/test/MC/MachO/ARM/static-movt-relocs.s
@@ -0,0 +1,23 @@
+@ RUN: llvm-mc -mcpu=cortex-a8 -triple thumbv7-apple-darwin10 -filetype=obj -o - < %s | macho-dump | FileCheck %s
+ .thumb
+ .thumb_func foo
+foo:
+ movw r0, :lower16:(bar + 16)
+ movt r0, :upper16:(bar + 16)
+ bx r0
+
+
+@ CHECK: ('_relocations', [
+@ CHECK: # Relocation 0
+@ CHECK: (('word-0', 0x4),
+@ CHECK: ('word-1', 0x8e000001)),
+@ CHECK: # Relocation 1
+@ CHECK: (('word-0', 0x10),
+@ CHECK: ('word-1', 0x16ffffff)),
+@ CHECK: # Relocation 2
+@ CHECK: (('word-0', 0x0),
+@ CHECK: ('word-1', 0x8c000001)),
+@ CHECK: # Relocation 3
+@ CHECK: (('word-0', 0x0),
+@ CHECK: ('word-1', 0x14ffffff)),
+@ CHECK: ])