brintos

brintos / llvm-project-archived public Read only

0
0
Text · 403 B · e1ca728 Raw
27 lines · plain
1@ RUN: llvm-mc < %s -triple thumbv5-linux-gnueabi -filetype=obj -o - \2@ RUN:   | llvm-readobj -r - | FileCheck %s3	.syntax	unified4 5	.text6	.align	27	.globl	main8	.type	main,%function9	.thumb_func10main:11	bl	end12	.space 819213end:14	bl	main215	bx	lr16 17	.text18	.align	219	.globl	main220	.type	main2,%function21	.thumb_func22main2:23	bx	lr24 25@ CHECK-NOT: 0x0 R_ARM_THM_CALL end26@ CHECK: 0x2004 R_ARM_THM_CALL main227