annotate lld/test/COFF/noentry.test @ 266:00f31e85ec16
default tip
Added tag current for changeset 31d058e83c98
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Sat, 14 Oct 2023 10:13:55 +0900 |
parents |
2e18cbf3894f |
children |
|
rev |
line source |
207
|
1 # RUN: yaml2obj %p/Inputs/export.yaml -o %t.obj
|
150
|
2 # RUN: lld-link /out:%t.dll /dll %t.obj
|
|
3 # RUN: llvm-readobj --file-headers %t.dll | FileCheck -check-prefix=ENTRY %s
|
|
4 # RUN: lld-link /out:%t.dll /dll /noentry %t.obj
|
|
5 # RUN: llvm-readobj --file-headers %t.dll | FileCheck -check-prefix=NOENTRY %s
|
|
6
|
|
7 ENTRY: AddressOfEntryPoint: 0x1000
|
|
8 NOENTRY: AddressOfEntryPoint: 0x0
|