[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / Inline / pr22285.ll
blobe365c8581b7c16ec410b28a81eb1c7d8ff4565a4
1 ; RUN: opt < %s -inline -S -enable-new-pm=0 | FileCheck %s
2 ; RUN: opt < %s -passes='cgscc(inline),globaldce' -S | FileCheck %s
4 $f1 = comdat any
5 ; CHECK-NOT: $f1 = comdat any
7 define void @f2() {
8   call void @f1()
9   ret void
11 ; CHECK-LABEL: define void @f2
13 define linkonce_odr void @f1() comdat {
14   ret void
16 ; CHECK-NOT: define linkonce_odr void @f1() comdat