summaryrefslogtreecommitdiff
path: root/test/Transforms/DeadArgElim/2006-06-27-struct-ret.ll
blob: 80bbce0c054ad4c41f0081349c32b29777cb30f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
}