brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · 2df0a4c Raw
72 lines · plain
1@ RUN: llvm-mc -triple armv7-eabi -filetype obj -o - %s \2@ RUN:   | llvm-readobj -S --sd - \3@ RUN:   | FileCheck %s4 5	.syntax unified6 7	.text8 9	.even10 11	.global aligned_function12	.type aligned_function,%function13aligned_function:14	bkpt15 16	.space 517 18	.even19 20	.global unaligned_function21	.type unaligned_function,%function22unaligned_function:23	bkpt24 25@ CHECK: Section {26@ CHECK:   Name: .text27@ CHECK:   SectionData (28@ CHECK:     0000: 700020E1 00000000 00007000 20E129@ CHECK:   )30@ CHECK: }31 32	.data33 34	.space 1535 36	.even37 38	.global classifiable39	.type classifiable,%object40classifiable:41	.byte 0xf142	.byte 0x5143	.byte 0xa544	.byte 0xc145	.byte 0x0046	.byte 0x0047	.byte 0x1e48	.byte 0xab49 50	.even51 52	.global declassified53	.type declassified,%object54declassified:55	.byte 0x5156	.byte 0xa557	.byte 0xc158	.byte 0xde59	.byte 0x0060	.byte 0x0061	.byte 0xed62	.byte 0xf163 64@ CHECK: Section {65@ CHECK:   Name: .data66@ CHECK:   SectionData (67@ CHECK:     0000: 00000000 00000000 00000000 0000000068@ CHECK:     0010: F151A5C1 00001EAB 51A5C1DE 0000EDF169@ CHECK:   )70@ CHECK: }71 72