[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Linker / func-attrs-a.ll
blob55b27aae79f6abd9830d69ee70c92dcf12b7919e
1 ; RUN: llvm-link %s %p/func-attrs-b.ll -S -o - | FileCheck %s
2 ; PR2382
4 ; CHECK: call void @check0(%struct.S0* sret(%struct.S0) null, %struct.S0* byval(%struct.S0) align 4 null, %struct.S0* align 4 null, %struct.S0* byval(%struct.S0) align 4 null)
5 ; CHECK: define void @check0(%struct.S0* sret(%struct.S0) %agg.result, %struct.S0* byval(%struct.S0) %arg0, %struct.S0* %arg1, %struct.S0* byval(%struct.S0) %arg2)
7 %struct.S0 = type <{ i8, i8, i8, i8 }>
9 define void @a() {
10   call void @check0(%struct.S0* sret(%struct.S0) null, %struct.S0* byval(%struct.S0) align 4 null, %struct.S0* align 4 null, %struct.S0* byval(%struct.S0) align 4 null)
11   ret void
14 declare void @check0(%struct.S0*, %struct.S0*, %struct.S0*, %struct.S0*)