Imported Upstream version 5.18.0.167

Former-commit-id: 289509151e0fee68a1b591a20c9f109c3c789d3a
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-10-20 08:25:10 +00:00
parent e19d552987
commit b084638f15
28489 changed files with 184 additions and 3866856 deletions

View File

@ -1,28 +0,0 @@
; 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: )