blob: d65e89fabdb60dceddd5f48bdf43ac7fbd236005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
; 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
}
|