[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / FunctionImport / not-prevailing.ll
blob043b3a89adc28db2895a020fb6801671ac3a1b16
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 --crash 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