9c22cbfca3be65ae4f7faf337ac11cfe9fdef134
[oota-llvm.git] / test / Transforms / FunctionResolve / 2003-06-18-TypePromotion.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -funcresolve | dis | not grep declare
2
3 declare void %test(int)
4
5 int %callee(int %X) {
6   call void %test(int %X)
7   ret int 2
8 }
9
10 internal void %test(sbyte) {
11   ret void
12 }