Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MachO / lto-linkonce.ll
bloba1f4c507123a399dec1441f2c060fb690001b715
1 ; REQUIRES: x86
2 ; RUN: rm -rf %t; split-file %s %t
3 ; RUN: opt -module-summary %t/first.ll -o %t/first.o
4 ; RUN: opt -module-summary %t/second.ll -o %t/second.o
5 ; RUN: %lld -dylib -lSystem %t/first.o %t/second.o -o %t/12
6 ; RUN: llvm-objdump --syms %t/12 | FileCheck %s --check-prefix=FIRST
7 ; RUN: %lld -dylib -lSystem %t/second.o %t/first.o -o %t/21
8 ; RUN: llvm-objdump --syms %t/21 | FileCheck %s --check-prefix=SECOND
10 ; FIRST:  w    O __TEXT,first  _foo
11 ; SECOND: w    O __TEXT,second _foo
13 #--- first.ll
15 target triple = "x86_64-apple-macosx10.15.0"
16 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
18 define linkonce void @foo() section "__TEXT,first" {
19   ret void
22 #--- second.ll
24 target triple = "x86_64-apple-macosx10.15.0"
25 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
27 define linkonce void @foo() section "__TEXT,second" {
28   ret void