This patch updates tests using llvm-readobj and llvm-readelf, because soon reading from stdin will be achievable only via a '-' as described here: https://bugs.llvm.org/show_bug.cgi?id=46400. Patch with changes to llvm-readobj behavior is here: https://reviews.llvm.org/D83704 Differential Revision: https://reviews.llvm.org/D83912 Reviewed by: jhenderson, MaskRay, grimar
16 lines
385 B
ArmAsm
16 lines
385 B
ArmAsm
@ RUN: llvm-mc -n -triple thumbv7-apple-darwin10 %s -filetype=obj -o %t.obj
|
|
@ RUN: llvm-readobj -S --sd - < %t.obj > %t.dump
|
|
@ RUN: FileCheck < %t.dump %s
|
|
.syntax unified
|
|
.text
|
|
.thumb
|
|
.thumb_func _foo
|
|
_foo:
|
|
ldr lr, (_foo - 4)
|
|
|
|
.subsections_via_symbols
|
|
|
|
@ CHECK: SectionData (
|
|
@ CHECK: 0000: 5FF808E0 |_...|
|
|
@ CHECK: )
|