Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MachO / lto-opt-level.ll
blob6fd155e460e9ff85b9afd2b20e51247b6d1b10fd
1 ; REQUIRES: x86
3 ; RUN: rm -rf %t; mkdir %t
4 ; RUN: llvm-as  %s -o %t/test.o
6 ; RUN: %lld %t/test.o --lto-O0 -o %t/test
7 ; RUN: llvm-nm -pa %t/test | FileCheck %s --check-prefixes=CHECK-O0
9 ; RUN: %lld %t/test.o --lto-O2 -o %t/test
10 ; RUN: llvm-nm -pa %t/test | FileCheck %s --check-prefixes=CHECK-O2
12 ; RUN: %lld %t/test.o -o %t/test
13 ; RUN: llvm-nm -pa %t/test | FileCheck %s --check-prefixes=CHECK-O2
15 ; CHECK-O0: foo
16 ; CHECK-O2-NOT: foo
18 target triple = "x86_64-apple-macosx10.15.0"
19 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
21 define internal void @foo() {
22   ret void
25 define void @main() {
26   call void @foo()
27   ret void