[LLD][COFF] Fix TypeServerSource matcher with more than one collision
[llvm-project.git] / lld / test / COFF / thunk-replace.s
blob0b53f09ef0486820f71b5b369d137874600357b2
1 # REQUIRES: x86
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
10 .global main
11 .text
12 main:
13 callq MessageBoxA
14 callq ExitProcess
15 callq otherFunc
16 ret