You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.1 KiB
70 lines
2.1 KiB
# RUN: yaml2obj %s -o %t.obj
|
|
|
|
# RUN: echo fn1 > %t.order
|
|
# RUN: echo fn2 >> %t.order
|
|
|
|
# RUN: lld-link -safeseh:no -entry:fn1 -subsystem:console -opt:noref %t.obj \
|
|
# RUN: -lldmap:- -out:%t.exe -order:@%t.order | FileCheck %s
|
|
# CHECK: fn1
|
|
# CHECK: fn2
|
|
|
|
# RUN: lld-link -safeseh:no -entry:fn1 -subsystem:console -opt:noref %t.obj \
|
|
# RUN: -lldmap:- -out:%t.exe | FileCheck -check-prefix=DEFAULT %s
|
|
# DEFAULT: fn2
|
|
# DEFAULT: fn1
|
|
|
|
--- !COFF
|
|
header:
|
|
Machine: IMAGE_FILE_MACHINE_I386
|
|
Characteristics: [ ]
|
|
sections:
|
|
- Name: '.text'
|
|
Characteristics: [ IMAGE_SCN_CNT_CODE, IMAGE_SCN_LNK_COMDAT, IMAGE_SCN_MEM_EXECUTE, IMAGE_SCN_MEM_READ ]
|
|
Alignment: 16
|
|
SectionData: CC
|
|
- Name: '.text'
|
|
Characteristics: [ IMAGE_SCN_CNT_CODE, IMAGE_SCN_LNK_COMDAT, IMAGE_SCN_MEM_EXECUTE, IMAGE_SCN_MEM_READ ]
|
|
Alignment: 16
|
|
SectionData: CC
|
|
symbols:
|
|
- Name: '.text'
|
|
Value: 0
|
|
SectionNumber: 1
|
|
SimpleType: IMAGE_SYM_TYPE_NULL
|
|
ComplexType: IMAGE_SYM_DTYPE_NULL
|
|
StorageClass: IMAGE_SYM_CLASS_STATIC
|
|
SectionDefinition:
|
|
Length: 1
|
|
NumberOfRelocations: 0
|
|
NumberOfLinenumbers: 0
|
|
CheckSum: 0
|
|
Number: 0
|
|
Selection: IMAGE_COMDAT_SELECT_NODUPLICATES
|
|
- Name: '.text'
|
|
Value: 0
|
|
SectionNumber: 2
|
|
SimpleType: IMAGE_SYM_TYPE_NULL
|
|
ComplexType: IMAGE_SYM_DTYPE_NULL
|
|
StorageClass: IMAGE_SYM_CLASS_STATIC
|
|
SectionDefinition:
|
|
Length: 1
|
|
NumberOfRelocations: 0
|
|
NumberOfLinenumbers: 0
|
|
CheckSum: 0
|
|
Number: 0
|
|
Selection: IMAGE_COMDAT_SELECT_NODUPLICATES
|
|
- Name: _fn2
|
|
Value: 0
|
|
SectionNumber: 1
|
|
SimpleType: IMAGE_SYM_TYPE_NULL
|
|
ComplexType: IMAGE_SYM_DTYPE_FUNCTION
|
|
StorageClass: IMAGE_SYM_CLASS_EXTERNAL
|
|
- Name: _fn1
|
|
Value: 0
|
|
SectionNumber: 2
|
|
SimpleType: IMAGE_SYM_TYPE_NULL
|
|
ComplexType: IMAGE_SYM_DTYPE_FUNCTION
|
|
StorageClass: IMAGE_SYM_CLASS_EXTERNAL
|
|
...
|
|
|