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 9 10; FIRST: w O __TEXT,first _foo 11; SECOND: w O __TEXT,second _foo 12 13#--- first.ll 14 15target triple = "x86_64-apple-macosx10.15.0" 16target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" 17 18define linkonce void @foo() section "__TEXT,first" { 19 ret void 20} 21 22#--- second.ll 23 24target triple = "x86_64-apple-macosx10.15.0" 25target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" 26 27define linkonce void @foo() section "__TEXT,second" { 28 ret void 29} 30