1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

New testcase that crashes the funcresolve pass.

llvm-svn: 6272
This commit is contained in:
Chris Lattner 2003-05-21 20:44:16 +00:00
parent 4875906a69
commit 228a0ea286

View File

@ -0,0 +1,11 @@
; RUN: as < %s | opt -funcresolve -disable-output
void %foo(int, int) {
ret void
}
declare void %foo(...)
void %test() {
call void(...)* %foo(int 7)
ret void
}