Imported Upstream version 6.10.0.49

Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2020-01-16 16:38:04 +00:00
parent d94e79959b
commit 468663ddbb
48518 changed files with 2789335 additions and 61176 deletions

View File

@ -0,0 +1,28 @@
; The purpose of this test is to verify that various module level assembly
; constructs work.
; RUN: llc -filetype=obj -mtriple i686-pc-win32 %s -o - | llvm-readobj -s -sd | FileCheck %s
; RUN: llc -filetype=obj -mtriple x86_64-pc-win32 %s -o - | llvm-readobj -s -sd | FileCheck %s
module asm ".text"
module asm "_foo:"
module asm " ret"
; CHECK: Name: .text
; CHECK-NEXT: VirtualSize: 0
; CHECK-NEXT: VirtualAddress: 0
; CHECK-NEXT: RawDataSize: {{[0-9]+}}
; CHECK-NEXT: PointerToRawData: 0x{{[0-9A-F]+}}
; CHECK-NEXT: PointerToRelocations: 0x{{[0-9A-F]+}}
; CHECK-NEXT: PointerToLineNumbers: 0x0
; CHECK-NEXT: RelocationCount: 0
; CHECK-NEXT: LineNumberCount: 0
; CHECK-NEXT: Characteristics [ (0x60300020)
; CHECK-NEXT: IMAGE_SCN_ALIGN_4BYTES
; CHECK-NEXT: IMAGE_SCN_CNT_CODE
; CHECK-NEXT: IMAGE_SCN_MEM_EXECUTE
; CHECK-NEXT: IMAGE_SCN_MEM_READ
; CHECK-NEXT: ]
; CHECK-NEXT: SectionData (
; CHECK-NEXT: 0000: C3
; CHECK-NEXT: )