mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
563ba88392
llvm-svn: 8558
12 lines
210 B
LLVM
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
|
|
}
|