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.
18 lines
402 B
18 lines
402 B
# REQUIRES: x86
|
|
# RUN: llvm-mc -triple=x86_64-windows-gnu %s -filetype=obj -o %t.o
|
|
|
|
# RUN: lld-link -lldmingw %t.o -out:%t.exe
|
|
# RUN: llvm-readobj --file-headers %t.exe | FileCheck %s
|
|
|
|
# CHECK: AddressOfEntryPoint: 0x1001
|
|
# CHECK: Subsystem: IMAGE_SUBSYSTEM_WINDOWS_CUI (0x3)
|
|
|
|
.text
|
|
.globl foo
|
|
.globl mainCRTStartup
|
|
foo:
|
|
ret
|
|
mainCRTStartup:
|
|
call foo
|
|
ret
|