2002-11-10 03:35:43 +00:00
|
|
|
;
|
2003-09-16 15:29:54 +00:00
|
|
|
; RUN: llvm-as < %s | opt -funcresolve -instcombine | llvm-dis | not grep '\.\.\.'
|
2002-11-10 03:35:43 +00:00
|
|
|
|
|
|
|
declare int %foo(...)
|
|
|
|
declare int %foo(int)
|
|
|
|
|
|
|
|
void %bar() {
|
|
|
|
call int(...)* %foo(int 7)
|
|
|
|
ret void
|
|
|
|
}
|