1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/Transforms/FunctionResolve/2003-05-31-FuncPointerResolve.ll

12 lines
210 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | opt -funcresolve | llvm-dis | not grep declare
2003-05-31 22:21:13 +02:00
%Table = constant int(...)* %foo
2003-05-31 22:33:09 +02:00
%Table2 = constant [1 x int(...)* ] [ int(...)* %foo ]
2003-05-31 22:21:13 +02:00
declare int %foo(...)
int %foo() {
ret int 0
}