30 lines · plain
1; REQUIRES: x862; RUN: rm -rf %t; split-file %s %t3; RUN: opt -module-summary %t/first.ll -o %t/first.o4; RUN: opt -module-summary %t/second.ll -o %t/second.o5; RUN: %lld -dylib -lSystem %t/first.o %t/second.o -o %t/126; RUN: llvm-objdump --syms %t/12 | FileCheck %s --check-prefix=FIRST7; RUN: %lld -dylib -lSystem %t/second.o %t/first.o -o %t/218; RUN: llvm-objdump --syms %t/21 | FileCheck %s --check-prefix=SECOND9 10; FIRST: w O __TEXT,first _foo11; SECOND: w O __TEXT,second _foo12 13#--- first.ll14 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 void20}21 22#--- second.ll23 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 void29}30