You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
757 B
28 lines
757 B
// RUN: llvm-mc -filetype=obj -triple thumbv7m-arm-linux-gnu %s -o - \
|
|
// RUN: | llvm-readobj -S --symbols - | FileCheck %s
|
|
|
|
.text
|
|
.ascii "test"
|
|
|
|
.section .text.foo,"axy"
|
|
bx lr
|
|
|
|
// CHECK: Section {
|
|
// CHECK: Name: .text
|
|
// CHECK-NEXT: Type: SHT_PROGBITS (0x1)
|
|
// CHECK-NEXT: Flags [ (0x6)
|
|
// CHECK-NEXT: SHF_ALLOC (0x2)
|
|
// CHECK-NEXT: SHF_EXECINSTR (0x4)
|
|
// CHECK-NEXT: ]
|
|
// CHECK: }
|
|
|
|
// CHECK: Section {
|
|
// CHECK: Name: .text.foo
|
|
// CHECK-NEXT: Type: SHT_PROGBITS (0x1)
|
|
// CHECK-NEXT: Flags [ (0x20000006)
|
|
// CHECK-NEXT: SHF_ALLOC (0x2)
|
|
// CHECK-NEXT: SHF_ARM_PURECODE (0x20000000)
|
|
// CHECK-NEXT: SHF_EXECINSTR (0x4)
|
|
// CHECK-NEXT: ]
|
|
// CHECK: }
|