mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
6cd76408bf
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
20 lines
417 B
ArmAsm
20 lines
417 B
ArmAsm
@ Check the value of st_other for thumb function.
|
|
|
|
@ ARM does not define any st_other flags for thumb function. The value
|
|
@ for st_other should always be 0.
|
|
|
|
@ RUN: llvm-mc < %s -triple thumbv5-linux-gnueabi -filetype=obj -o - \
|
|
@ RUN: | llvm-readobj --symbols - | FileCheck %s
|
|
|
|
.syntax unified
|
|
.text
|
|
.align 2
|
|
.thumb_func
|
|
.global main
|
|
.type main,%function
|
|
main:
|
|
bx lr
|
|
|
|
@ CHECK: Name: main
|
|
@ CHECK: Other: 0
|