1# REQUIRES: x86 2 3# RUN: llvm-mc -triple=x86_64-win32 %s -filetype=obj -o %t.main.obj 4# RUN: llvm-mc -triple=x86_64-win32 %p/Inputs/otherFunc.s -filetype=obj -o %t.other.obj 5# RUN: llvm-ar rcs %t.other.lib %t.other.obj 6# RUN: env LLD_IN_TEST=1 not lld-link -out:%t.exe -entry:main %t.main.obj \ 7# RUN: %p/Inputs/std64.lib %t.other.lib -opt:noref 2>&1 | FileCheck %s 8# CHECK: MessageBoxA was replaced 9 10.global main 11.text 12main: 13 callq MessageBoxA 14 callq ExitProcess 15 callq otherFunc 16 ret 17