[LLD][COFF] Fix TypeServerSource matcher with more than one collision
[llvm-project.git] / lld / test / COFF / lto-cpu-string.ll
blobc2a8df5f75bad66955e7e1c625b4e76b5dcb5172
1 ; REQUIRES: x86
2 ; RUN: llvm-as %s -o %t.obj
4 ; RUN: lld-link %t.obj -noentry -nodefaultlib -out:%t.dll -dll
5 ; RUN: llvm-objdump -d --section=".text" --no-leading-addr --no-show-raw-insn %t.dll | FileCheck %s
6 ; CHECK: nop{{$}}
8 ; RUN: lld-link -mllvm:-mcpu=znver1 -noentry -nodefaultlib %t.obj -out:%t.znver1.dll -dll
9 ; RUN: llvm-objdump -d --section=".text" --no-leading-addr --no-show-raw-insn %t.znver1.dll | FileCheck --check-prefix=ZNVER1 %s
10 ; ZNVER1: nopw
12 target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
13 target triple = "x86_64-pc-windows-msvc19.14.26433"
15 define dllexport void @foo() #0 {
16 entry:
17   call void asm sideeffect ".p2align        4, 0x90", "~{dirflag},~{fpsr},~{flags}"()
18   ret void
21 attributes #0 = { "frame-pointer"="all" }