blob: 94ad671fb2a880bb852b12459ea99790243c60ef (
plain)
1
2
3
4
5
6
7
8
9
|
; RUN: llvm-as < %s | opt -raise | llvm-dis | grep call | not grep '\.\.\.'
implementation
void %test(sbyte* %P) {
%Q = cast sbyte* %P to void (...)*
call void (...)* %Q(sbyte* %P)
ret void
}
|