For PR411:
[oota-llvm.git] / test / Transforms / FunctionResolve / 2003-05-31-FuncPointerResolve.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -funcresolve | llvm-dis | not grep declare
2
3 %Table = constant int(...)* %foo
4
5 %Table2 = constant [1 x int(...)* ] [ int(...)* %foo ]
6
7 declare int %foo(...)
8
9 int %foo() {
10   ret int 0
11 }