1cee313d2SEric Christopher; RUN: opt -module-summary %s -o %t1.bc 2cee313d2SEric Christopher; RUN: opt -module-summary -o %t2.bc %S/Inputs/not-prevailing.ll 3*4ad76852SYuanfang Chen; RUN: not --crash llvm-lto2 run -o %t3.bc %t1.bc %t2.bc -r %t1.bc,bar,px \ 4cee313d2SEric Christopher; RUN: -r %t1.bc,foo,x -r %t2.bc,foo,x -save-temps 2>&1 | FileCheck %s 5cee313d2SEric Christopher 6cee313d2SEric Christopher; CHECK: Interposable and available_externally/linkonce_odr/weak_odr symbol 7cee313d2SEric Christopher 87b1d7937SAmy Huangtarget datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" 9cee313d2SEric Christophertarget triple = "x86_64-unknown-linux-gnu" 10cee313d2SEric Christopher 11cee313d2SEric Christopherdefine available_externally i32 @foo() { 12cee313d2SEric Christopher ret i32 1 13cee313d2SEric Christopher} 14cee313d2SEric Christopher 15cee313d2SEric Christopherdefine i32 @bar() { 16cee313d2SEric Christopher %1 = call i32 @foo() 17cee313d2SEric Christopher ret i32 %1 18cee313d2SEric Christopher} 19