llvm-6502/test/Transforms/FunctionResolve/2003-05-31-FuncPointerResolve.ll
2003-09-16 15:29:54 +00:00

12 lines
210 B
LLVM

; RUN: llvm-as < %s | opt -funcresolve | llvm-dis | not grep declare
%Table = constant int(...)* %foo
%Table2 = constant [1 x int(...)* ] [ int(...)* %foo ]
declare int %foo(...)
int %foo() {
ret int 0
}