blob: 2a7b3a1f0421da23a71136b20380a8afc3e0aedc [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | 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