diff options
Diffstat (limited to 'test/COFF/icf-circular.test')
-rw-r--r-- | test/COFF/icf-circular.test | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/test/COFF/icf-circular.test b/test/COFF/icf-circular.test deleted file mode 100644 index c1135660a7802..0000000000000 --- a/test/COFF/icf-circular.test +++ /dev/null @@ -1,81 +0,0 @@ -# RUN: yaml2obj < %s > %t.obj -# RUN: lld-link /entry:foo /out:%t.exe /subsystem:console /include:bar \ -# RUN: /verbose %t.obj > %t.log 2>&1 -# RUN: FileCheck %s < %t.log - -# CHECK: Selected foo -# CHECK: Removed bar - ---- !COFF -header: - Machine: IMAGE_FILE_MACHINE_AMD64 - Characteristics: [] -sections: - - Name: '.text$mn' - Characteristics: [ IMAGE_SCN_CNT_CODE, IMAGE_SCN_LNK_COMDAT, IMAGE_SCN_MEM_EXECUTE, IMAGE_SCN_MEM_READ ] - Alignment: 16 - SectionData: 4883EC28E8000000004883C428C3 - Relocations: - - VirtualAddress: 5 - SymbolName: foo - Type: IMAGE_REL_AMD64_REL32 - - VirtualAddress: 10 - SymbolName: __ImageBase - Type: IMAGE_REL_AMD64_REL32 - - Name: '.text$mn' - Characteristics: [ IMAGE_SCN_CNT_CODE, IMAGE_SCN_LNK_COMDAT, IMAGE_SCN_MEM_EXECUTE, IMAGE_SCN_MEM_READ ] - Alignment: 16 - SectionData: 4883EC28E8000000004883C428C3 - Relocations: - - VirtualAddress: 5 - SymbolName: bar - Type: IMAGE_REL_AMD64_REL32 - - VirtualAddress: 10 - SymbolName: __ImageBase - Type: IMAGE_REL_AMD64_REL32 -symbols: - - Name: '.text$mn' - Value: 0 - SectionNumber: 1 - SimpleType: IMAGE_SYM_TYPE_NULL - ComplexType: IMAGE_SYM_DTYPE_NULL - StorageClass: IMAGE_SYM_CLASS_STATIC - SectionDefinition: - Length: 14 - NumberOfRelocations: 1 - NumberOfLinenumbers: 0 - CheckSum: 1682752513 - Number: 0 - Selection: IMAGE_COMDAT_SELECT_NODUPLICATES - - Name: '.text$mn' - Value: 0 - SectionNumber: 2 - SimpleType: IMAGE_SYM_TYPE_NULL - ComplexType: IMAGE_SYM_DTYPE_NULL - StorageClass: IMAGE_SYM_CLASS_STATIC - SectionDefinition: - Length: 14 - NumberOfRelocations: 1 - NumberOfLinenumbers: 0 - CheckSum: 1682752513 - Number: 0 - Selection: IMAGE_COMDAT_SELECT_NODUPLICATES - - Name: foo - Value: 0 - SectionNumber: 1 - SimpleType: IMAGE_SYM_TYPE_NULL - ComplexType: IMAGE_SYM_DTYPE_FUNCTION - StorageClass: IMAGE_SYM_CLASS_EXTERNAL - - Name: bar - Value: 0 - SectionNumber: 2 - SimpleType: IMAGE_SYM_TYPE_NULL - ComplexType: IMAGE_SYM_DTYPE_FUNCTION - StorageClass: IMAGE_SYM_CLASS_EXTERNAL - - Name: __ImageBase - Value: 0 - SectionNumber: 0 - SimpleType: IMAGE_SYM_TYPE_NULL - ComplexType: IMAGE_SYM_DTYPE_NULL - StorageClass: IMAGE_SYM_CLASS_EXTERNAL -... |