new testcase

llvm-svn: 8953
This commit is contained in:
Chris Lattner 2003-10-07 22:53:46 +00:00
parent aec3d948cf
commit 68c824b7c0
1 changed files with 7 additions and 0 deletions

View File

@ -66,3 +66,10 @@ short %test10(short %A) {
ret short %c2
}
declare void %varargs(int, ...)
void %test11(int* %P) {
%c = cast int* %P to short*
call void(int, ...)* %varargs(int 5, short* %c)
ret void
}