testcase that crashes dead arg elim.
[oota-llvm.git] / test / Transforms / DeadArgElim / 2006-06-27-struct-ret.ll
1 ; RUN: llvm-as < %s | opt -deadargelim -disable-output
2
3 implementation
4
5 internal csretcc void %build_delaunay({int}* %agg.result) {
6         ret void
7 }
8
9 void %test() {
10   call csretcc void %build_delaunay({int}* null)
11   ret void
12 }
13