brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1015 B · c9e25f6 Raw
32 lines · plain
1// RUN: llvm-mc -triple i386-apple-darwin9 %s -filetype=obj -o - | llvm-readobj -S --sd - | FileCheck %s2 3// rdar://155260464 5.text6.globl _main7_main:8	.space 0x01020f55, 0x909bug:10	movl  $0, _key64b_9+411.section __TEXT, __padding12	.space 0x515b91, 013.data14	.space 0xa70, 015.globl _key64b_916_key64b_9:17	.long 118	.long 219 20// The movl instruction above should produce this encoding where the address21// of _key64b_9 is at 0x01537560.  This is testing falling back from using a22// scattered relocation to a normal relocation because the offset from the23// start of the section is more than 24-bits.  But need to get the item to24// be relocated, in this case _key64b_9+4, value correct in the instruction.25// 01020f55	c7056475530100000000	movl	$0x0, 0x153756426 27// CHECK: SectionData (28// CHECK: F75530: 90909090 90909090 90909090 90909090  |................|29// CHECK: 1020F50: 90909090 90C70564 75530100 000000    |.......duS.....|30// CHECK: 75530: 00000000 00000000 00000000 00000000  |................|31// CHECK: )32