You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
58
external/llvm/test/MC/ARM/Windows/multiple-text-sections.s
vendored
Normal file
58
external/llvm/test/MC/ARM/Windows/multiple-text-sections.s
vendored
Normal file
@ -0,0 +1,58 @@
|
||||
@ RUN: llvm-mc -triple thumbv7-windows-itanium -filetype obj -o - %s \
|
||||
@ RUN: | llvm-readobj -s - | FileCheck %s
|
||||
|
||||
.syntax unified
|
||||
.text
|
||||
.thumb
|
||||
|
||||
.section .text,"xr",one_only,a
|
||||
|
||||
.def a;
|
||||
.scl 2;
|
||||
.type 32;
|
||||
.endef
|
||||
a:
|
||||
movs r0, #65
|
||||
bx lr
|
||||
|
||||
.section .text,"xr",one_only,b
|
||||
|
||||
.def b;
|
||||
.scl 2;
|
||||
.type 32;
|
||||
.endef
|
||||
.thumb_func
|
||||
b:
|
||||
movs r0, #66
|
||||
bx lr
|
||||
|
||||
@ CHECK: Sections [
|
||||
@ CHECK: Section {
|
||||
@ CHECK: Name: .text
|
||||
@ CHECK: Characteristics [
|
||||
@ CHECK: IMAGE_SCN_CNT_CODE
|
||||
@ CHECK: IMAGE_SCN_MEM_16BIT
|
||||
@ CHECK: IMAGE_SCN_MEM_EXECUTE
|
||||
@ CHECK: IMAGE_SCN_MEM_READ
|
||||
@ CHECK: ]
|
||||
@ CHECK: }
|
||||
@ CHECK: Section {
|
||||
@ CHECK: Name: .text
|
||||
@ CHECK: Characteristics [
|
||||
@ CHECK: IMAGE_SCN_CNT_CODE
|
||||
@ CHECK: IMAGE_SCN_MEM_16BIT
|
||||
@ CHECK: IMAGE_SCN_MEM_EXECUTE
|
||||
@ CHECK: IMAGE_SCN_MEM_READ
|
||||
@ CHECK: ]
|
||||
@ CHECK: }
|
||||
@ CHECK: Section {
|
||||
@ CHECK: Name: .text
|
||||
@ CHECK: Characteristics [
|
||||
@ CHECK: IMAGE_SCN_CNT_CODE
|
||||
@ CHECK: IMAGE_SCN_MEM_16BIT
|
||||
@ CHECK: IMAGE_SCN_MEM_EXECUTE
|
||||
@ CHECK: IMAGE_SCN_MEM_READ
|
||||
@ CHECK: ]
|
||||
@ CHECK: }
|
||||
@ CHECK: ]
|
||||
|
Reference in New Issue
Block a user