mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
15 lines
728 B
LLVM
15 lines
728 B
LLVM
; RUN: llvm-link %s %p/func-attrs-b.ll -S -o - | FileCheck %s
|
|
; PR2382
|
|
|
|
; 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)
|
|
; 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)
|
|
|
|
%struct.S0 = type <{ i8, i8, i8, i8 }>
|
|
|
|
define void @a() {
|
|
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)
|
|
ret void
|
|
}
|
|
|
|
declare void @check0(%struct.S0*, %struct.S0*, %struct.S0*, %struct.S0*)
|