[lib/ObjectYAML] - Change interface to return `bool` instead of `int`. NFCI
[llvm-complete.git] / test / Transforms / FunctionImport / not-prevailing.ll
blob0e0dd53950aef70626a2e8d4cb80ca177e40d5ea
1 ; RUN: opt -module-summary %s -o %t1.bc
2 ; RUN: opt -module-summary -o %t2.bc %S/Inputs/not-prevailing.ll
3 ; RUN: not llvm-lto2 run -o %t3.bc %t1.bc %t2.bc -r %t1.bc,bar,px \
4 ; RUN:     -r %t1.bc,foo,x -r %t2.bc,foo,x -save-temps 2>&1 | FileCheck %s
6 ; CHECK: Interposable and available_externally/linkonce_odr/weak_odr symbol
8 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
9 target triple = "x86_64-unknown-linux-gnu"
11 define available_externally i32 @foo() {
12   ret i32 1
15 define i32 @bar() {
16   %1 = call i32 @foo()
17   ret i32 %1