blob: 80bbce0c054ad4c41f0081349c32b29777cb30f7 [file] [log] [blame]
Chris Lattnera60af322006-06-27 20:58:41 +00001; RUN: llvm-as < %s | opt -deadargelim -disable-output
2
3implementation
4
5internal csretcc void %build_delaunay({int}* %agg.result) {
6 ret void
7}
8
9void %test() {
10 call csretcc void %build_delaunay({int}* null)
11 ret void
12}
13