Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MachO / lto-cpu-string.ll
blobdcd51bef6f446ef498e4ac9f32e54fc58519cd97
1 ; REQUIRES: x86
2 ; RUN: llvm-as %s -o %t.o
4 ; RUN: %lld %t.o -o %t.dylib -dylib
5 ; RUN: llvm-objdump -d --section="__text" --no-leading-addr --no-show-raw-insn %t.dylib | FileCheck %s
6 ; CHECK: nop{{$}}
8 ; RUN: %lld -mcpu znver1 %t.o -o %t.znver1.dylib -dylib
9 ; RUN: llvm-objdump -d --section="__text" --no-leading-addr --no-show-raw-insn %t.znver1.dylib | FileCheck %s --check-prefix=ZNVER1
11 ; ZNVER1: nopw
12 ; ZNVER1-NOT: nop{{$}}
14 target triple = "x86_64-apple-darwin"
15 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
17 define void @foo() #0 {
18 entry:
19   call void asm sideeffect ".p2align        4, 0x90", "~{dirflag},~{fpsr},~{flags}"()
20   ret void
23 attributes #0 = { "frame-pointer"="all" }