[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / FunctionAttrs / comdat-ipo.ll
blob4ad080bff425f3199232ae618769879542d85007
1 ; RUN: opt < %s -function-attrs -S | FileCheck %s
2 ; RUN: opt < %s -passes=function-attrs -S | FileCheck %s
4 ; See PR26774
6 ; CHECK-LABEL: define void @bar(i8* readonly %0) {
7 define void @bar(i8* readonly) {
8   call void @foo(i8* %0)
9   ret void
13 ; CHECK-LABEL: define linkonce_odr void @foo(i8* readonly %0) {
14 define linkonce_odr void @foo(i8* readonly) {
15   call void @bar(i8* %0)
16   ret void