aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/FunctionResolve/2003-05-31-FuncPointerResolve.ll
blob: 01da6dc9a63ba06b361f9835277ffed99c76a22b (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: as < %s | opt -funcresolve | dis | not grep declare

%Table = constant int(...)* %foo

%Table2 = constant [1 x int(...)* ] [ int(...)* %foo ]

declare int %foo(...)

int %foo() {
  ret int 0
}