Skip to content
This repository has been archived by the owner on Feb 5, 2019. It is now read-only.

Commit

Permalink
[tests] Use llvm-readobj instead of macho-dump.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243487 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
dcci committed Jul 28, 2015
1 parent 6969fd1 commit 62df004
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions test/MC/AArch64/arm64-small-data-fixups.s
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; RUN: llvm-mc -triple arm64-apple-darwin -filetype=obj -o - %s | macho-dump | FileCheck %s
; RUN: llvm-mc -triple arm64-apple-darwin -filetype=obj -o - %s | llvm-readobj -r | FileCheck %s

foo:
.long 0
Expand All @@ -9,16 +9,15 @@ baz:
.byte foo - bar
.short foo - bar

; CHECK: # Relocation 0
; CHECK: (('word-0', 0x9),
; CHECK: ('word-1', 0x1a000002)),
; CHECK: # Relocation 1
; CHECK: (('word-0', 0x9),
; CHECK: ('word-1', 0xa000001)),
; CHECK: # Relocation 2
; CHECK: (('word-0', 0x8),
; CHECK: ('word-1', 0x18000002)),
; CHECK: # Relocation 3
; CHECK: (('word-0', 0x8),
; CHECK: ('word-1', 0x8000001)),

; CHECK: File: <stdin>
; CHECK: Format: Mach-O arm64
; CHECK: Arch: aarch64
; CHECK: AddressSize: 64bit
; CHECK: Relocations [
; CHECK: Section __text {
; CHECK: 0x9 0 1 1 ARM64_RELOC_SUBTRACTOR 0 bar
; CHECK: 0x9 0 1 1 ARM64_RELOC_UNSIGNED 0 foo
; CHECK: 0x8 0 0 1 ARM64_RELOC_SUBTRACTOR 0 bar
; CHECK: 0x8 0 0 1 ARM64_RELOC_UNSIGNED 0 foo
; CHECK: }
; CHECK: ]

0 comments on commit 62df004

Please sign in to comment.