New testcase

llvm-svn: 6477
This commit is contained in:
Chris Lattner 2003-05-31 20:21:13 +00:00
parent e2d74c1c81
commit 1fcfd4eb61
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
; RUN: if as < %s | opt -funcresolve | dis | grep declare
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
%Table = constant int(...)* %foo
declare int %foo(...)
int %foo() {
ret int 0
}