More testcases, which I'll implement later
[oota-llvm.git] / test / Transforms / FunctionResolve / 2003-05-31-InternalDecl.ll
1 ; RUN: as < %s | opt -funcresolve | dis | not grep declare
2
3 declare void %test(...)
4
5 int %callee() {
6   call void(...)* %test(int 5)
7   ret int 2
8 }
9
10 internal void %test(int) {
11   ret void
12 }