Home | History | Annotate | Download | only in ARM
      1 @ Check the value of st_other for thumb function.
      2 
      3 @ ARM does not define any st_other flags for thumb function.  The value
      4 @ for st_other should always be 0.
      5 
      6 @ RUN: llvm-mc < %s -triple thumbv5-linux-gnueabi -filetype=obj -o - \
      7 @ RUN:   | llvm-readobj -t | FileCheck %s
      8 
      9 	.syntax	unified
     10 	.text
     11 	.align	2
     12 	.thumb_func
     13 	.global	main
     14 	.type	main,%function
     15 main:
     16 	bx	lr
     17 
     18 @ CHECK: Name: main
     19 @ CHECK: Other: 0
     20