old testcase

llvm-svn: 8967
This commit is contained in:
Chris Lattner 2003-10-08 18:28:10 +00:00
parent 7803da6151
commit f6b9e8cc69
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
; RUN: llvm-as < %s | opt -funcresolve | dis | not grep declare
declare void %test(int)
int %callee(int %X) {
call void %test(int %X)
ret int 2
}
internal void %test(sbyte) {
ret void
}