diff options
Diffstat (limited to 'test/COFF/locally-imported-arm64.test')
-rw-r--r-- | test/COFF/locally-imported-arm64.test | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/test/COFF/locally-imported-arm64.test b/test/COFF/locally-imported-arm64.test deleted file mode 100644 index 35200ffc1e8d3..0000000000000 --- a/test/COFF/locally-imported-arm64.test +++ /dev/null @@ -1,61 +0,0 @@ -# RUN: yaml2obj < %s > %t.obj -# RUN: lld-link /out:%t.exe /entry:main %t.obj -# RUN: llvm-objdump -s %t.exe | FileCheck %s -# RUN: llvm-readobj -coff-basereloc %t.exe | FileCheck -check-prefix=BASEREL %s - -# CHECK: Contents of section .text: -# CHECK-NEXT: 1000 00200000 -# CHECK: Contents of section .rdata: -# CHECK-NEXT: 2000 04100040 01000000 - -# BASEREL: BaseReloc [ -# BASEREL-NEXT: Entry { -# BASEREL-NEXT: Type: DIR64 -# BASEREL-NEXT: Address: 0x2000 -# BASEREL-NEXT: } -# BASEREL-NEXT: Entry { -# BASEREL-NEXT: Type: ABSOLUTE -# BASEREL-NEXT: Address: 0x2000 -# BASEREL-NEXT: } -# BASEREL-NEXT: ] - ---- !COFF -header: - Machine: IMAGE_FILE_MACHINE_ARM64 - Characteristics: [] -sections: - - Name: .text - Characteristics: [ IMAGE_SCN_CNT_CODE, IMAGE_SCN_MEM_EXECUTE, IMAGE_SCN_MEM_READ ] - Alignment: 4 - SectionData: 00000000 - Relocations: - - VirtualAddress: 0 - SymbolName: __imp_main - Type: IMAGE_REL_ARM64_ADDR32NB -symbols: - - Name: .text - Value: 0 - SectionNumber: 1 - SimpleType: IMAGE_SYM_TYPE_NULL - ComplexType: IMAGE_SYM_DTYPE_NULL - StorageClass: IMAGE_SYM_CLASS_STATIC - SectionDefinition: - Length: 4 - NumberOfRelocations: 1 - NumberOfLinenumbers: 0 - CheckSum: 0 - Number: 0 - Selection: IMAGE_COMDAT_SELECT_ANY - - Name: main - Value: 4 - SectionNumber: 1 - SimpleType: IMAGE_SYM_TYPE_NULL - ComplexType: IMAGE_SYM_DTYPE_FUNCTION - StorageClass: IMAGE_SYM_CLASS_EXTERNAL - - Name: __imp_main - Value: 0 - SectionNumber: 0 - SimpleType: IMAGE_SYM_TYPE_NULL - ComplexType: IMAGE_SYM_DTYPE_FUNCTION - StorageClass: IMAGE_SYM_CLASS_EXTERNAL -... |