llvm/test/MC/MachO/ARM/thumb2-movt-fixup.s
Davide Italiano 95f5735fb0 [MC] Convert another bunch of tests from macho-dump to llvm-readobj.
This is (almost) everything under MC/MachO/ARM. There are still some
cases missing, because llvm-readobj doesn't (yet) support some features,
that macho-dump provides. I plan to reduce the gap between them shortly.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@245302 91177308-0d34-0410-b5e6-96231b3b80d8
2015-08-18 16:05:13 +00:00

32 lines
770 B
ArmAsm

@ RUN: llvm-mc -mcpu=cortex-a8 -triple thumbv7-apple-darwin10 -filetype=obj -o - < %s | llvm-readobj -relocations -expand-relocs | FileCheck %s
_fred:
movt r3, :upper16:(_wilma-(LPC0_0+4))
LPC0_0:
_wilma:
.long 0
@ CHECK: File: <stdin>
@ CHECK: Format: Mach-O arm
@ CHECK: Arch: arm
@ CHECK: AddressSize: 32bit
@ CHECK: Relocations [
@ CHECK: Section __text {
@ CHECK: Relocation {
@ CHECK: Offset: 0x0
@ CHECK: PCRel: 0
@ CHECK: Length: 3
@ CHECK: Type: ARM_RELOC_HALF_SECTDIFF (9)
@ CHECK: Value: 0x4
@ CHECK: }
@ CHECK: Relocation {
@ CHECK: Offset: 0xFFFC
@ CHECK: PCRel: 0
@ CHECK: Length: 3
@ CHECK: Type: ARM_RELOC_PAIR (1)
@ CHECK: Value: 0x4
@ CHECK: }
@ CHECK: }
@ CHECK: ]