Remove explicit control flow through the use of the 'not' script
[oota-llvm.git] / test / Transforms / FunctionResolve / 2003-05-31-FuncPointerResolve.ll
1 ; RUN: as < %s | opt -funcresolve | 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 }