20 lines · plain
1@ Check the value of st_other for thumb function.2 3@ ARM does not define any st_other flags for thumb function. The value4@ for st_other should always be 0.5 6@ RUN: llvm-mc < %s -triple thumbv5-linux-gnueabi -filetype=obj -o - \7@ RUN: | llvm-readobj --symbols - | FileCheck %s8 9 .syntax unified10 .text11 .align 212 .thumb_func13 .global main14 .type main,%function15main:16 bx lr17 18@ CHECK: Name: main19@ CHECK: Other: 020