testcase that crashes dead arg elim.

llvm-svn: 28942
This commit is contained in:
Chris Lattner 2006-06-27 20:58:41 +00:00
parent f882c54505
commit 66e9513625
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
; RUN: llvm-as < %s | opt -deadargelim -disable-output
implementation
internal csretcc void %build_delaunay({int}* %agg.result) {
ret void
}
void %test() {
call csretcc void %build_delaunay({int}* null)
ret void
}