summaryrefslogtreecommitdiff
path: root/test/MC/MachO
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2013-12-04 23:36:24 +0000
committerKevin Enderby <enderby@apple.com>2013-12-04 23:36:24 +0000
commitf50f3a3bb9001bbfbc8d392c2021f674c80f7b7c (patch)
treed0bc9f32fa3466d95a498232c315d11c64772077 /test/MC/MachO
parent3f8689f8af4044afc9c940a1dc43ef6bc32bcdd7 (diff)
Fix a bug in darwin's 32-bit X86 handling of evaluating fixups.
Where it would use a scattered relocation entry but falls back to a normal relocation entry because the FixupOffset is more than 24-bits. The bug is in the X86MachObjectWriter::RecordScatteredRelocation() where it changes reference parameter FixedValue but then returns false to indicate it did not create a scattered relocation entry. The fix is simply to save the original value of the parameter FixedValue at the start of the method and restore it if we are returning false in that case. rdar://15526046 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@196432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/MachO')
-rw-r--r--test/MC/MachO/x86_32-scattered-reloc-fallback.s27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/MC/MachO/x86_32-scattered-reloc-fallback.s b/test/MC/MachO/x86_32-scattered-reloc-fallback.s
new file mode 100644
index 00000000000..3de52b4228d
--- /dev/null
+++ b/test/MC/MachO/x86_32-scattered-reloc-fallback.s
@@ -0,0 +1,27 @@
+// RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | macho-dump --dump-section-data | FileCheck %s
+
+// rdar://15526046
+
+.text
+.globl _main
+_main:
+ .space 0x01020f55, 0x90
+bug:
+ movl $0, _key64b_9+4
+.section __TEXT, __padding
+ .space 0x515b91, 0
+.data
+ .space 0xa70, 0
+.globl _key64b_9
+_key64b_9:
+ .long 1
+ .long 2
+
+// The movl instruction above should produce this encoding where the address
+// of _key64b_9 is at 0x01537560. This is testing falling back from using a
+// scattered relocation to a normal relocation because the offset from the
+// start of the section is more than 24-bits. But need to get the item to
+// be relocated, in this case _key64b_9+4, value correct in the instruction.
+// 01020f55 c7056475530100000000 movl $0x0, 0x1537564
+
+// CHECK: 90c70564 75530100 000000')