Rename CODE_OWNERS -> Maintainers (#114544)
[llvm-project.git] / lld / test / COFF / include-lto.ll
blobc0cb8d1011794fd19779927c2a9a92543d117c16
1 ; REQUIRES: x86
2 ; RUN: llvm-as -o %t.obj %s
3 ; RUN: lld-link /dll /out:%t.dll %t.obj
4 ; RUN: llvm-objdump -d %t.dll | FileCheck %s
6 ; Checks that code for foo is emitted, as required by the /INCLUDE directive.
7 ; CHECK: xorl %eax, %eax
8 ; CHECK-NEXT: retq
10 target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
11 target triple = "x86_64-pc-windows-msvc"
13 define void @_DllMainCRTStartup() {
14   ret void
17 define i32 @foo() {
18   ret i32 0
21 !llvm.linker.options = !{!0}
22 !0 = !{!"/INCLUDE:foo"}